:root {
    --pink: #ff4f8b;
    --dark: #1f2937;
    --bg: #fff5f8;
}

* {
    box-sizing: border-box;
    font-family: "Poppins", system-ui, sans-serif;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--dark);
}

/* HEADER */
.header {
    background: linear-gradient(90deg, #ff5c8d, #ff3f78);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25)
}

.header-inner {
    max-width: 1100px;
    margin: auto;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 22px;
}

.nav a {
    color: white;
    margin-left: 18px;
    text-decoration: none;
    font-weight: 600;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: white;
}

/* HERO */
.hero {
    height: 95vh;
    background: linear-gradient(rgba(56, 56, 56, 0.9), rgba(75, 75, 75, 0.7)),
        url("images/o1.png") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 42px;
}

.btn-primary {
    margin-top: 16px;
    padding: 14px 26px;
    background: white;
    color: var(--pink);
    border-radius: 30px;
    font-weight: 700;
    width: 100%;
    text-decoration: none;
}

/* SECTIONS */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    transition: transform .4s, box-shadow .4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-body {
    padding: 20px;
    text-align: center;
}

.price {
    font-weight: 700;
    color: var(--pink);
}

.desc {
    font-size: 8px;
}

/* ORDER CARD */
.order-card {
    max-width: 420px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== HELP & CARE ===== */
.help-section {
    padding: 50px 20px;
}

.help-head {
    text-align: center;
    margin-bottom: 30px;
}

.help-head h2 {
    font-size: 32px;
    margin-bottom: 6px;
}

.help-head p {
    color: #6b7280;
}

/* GRID */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* CARD */
.help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* ICON */
.help-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5c8d, #ff3f78);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.help-icon svg {
    width: 22px;
    height: 22px;
}

/* TEXT */
.help-meta {
    display: flex;
    flex-direction: column;
}

.help-label {
    font-size: 14px;
    color: #6b7280;
}

.help-number {
    font-size: 18px;
    font-weight: 700;
}

.help-cta {
    font-size: 13px;
    color: #ff4f8b;
    font-weight: 600;
}

/* SHINE ANIMATION */
.shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-20deg);
}

.shine:hover::after {
    animation: shineMove 0.9s;
}

@keyframes shineMove {
    from {
        left: -75%;
    }

    to {
        left: 125%;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .help-head h2 {
        font-size: 26px;
    }
}

/* ===== Footer Styles ===== */
.site-footer {
    background: linear-gradient(90deg, #ff5c8d, #ff3f78);
    color: #ebebeb;
    padding: 28px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.footer-brand img {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25)
}

.footer-brand h3 {
    margin: 6px 0 0;
    font-size: 18px;
    font-weight: 700
}

.footer-brand p {
    margin: 4px 0 0;
    font-size: 14px;
    opacity: .85
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 8px
}

.social-icon {
    color: white;
    font-size: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    text-decoration: none
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    border-color: white
}

.social-icon.fb:hover {
    box-shadow: 0 0 8px #1877f2
}

.social-icon.ig:hover {
    box-shadow: 0 0 8px #e4405f
}

.social-icon.yt:hover {
    box-shadow: 0 0 8px #ff0000
}

.footer-copy {
    font-size: 13px;
    opacity: .8;
    margin-top: 12px
}

@media (max-width:640px) {
    .footer-social {
        gap: 14px
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}