* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    background: #0b0b0f;
    color: #e5e7eb;
}

/* ---------------- HEADER ---------------- */
header {
    background: rgba(15, 15, 25, 0.95);
    padding: 16px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #d9468f, #f59e0b, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

nav a {
    color: #cbd5f5;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d9468f, #14b8a6);
    bottom: -6px;
    left: 0;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ---------------- HERO ---------------- */
.hero {
    height: 80vh;
    background: radial-gradient(circle at top, #1a1a2e, #0b0b0f);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    background: linear-gradient(90deg, #d9468f, #f59e0b, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin: 18px 0;
    font-size: 18px;
    color: #cbd5f5;
}

.btn {
    margin-top: 25px;
    padding: 14px 38px;
    border-radius: 30px;
    background: linear-gradient(90deg, #d9468f, #f59e0b, #14b8a6);
    color: #0b0b0f;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(20,184,166,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(217,70,143,0.4);
}

/* ---------------- SECTIONS ---------------- */
.about, .products, .contact {
    padding: 80px 60px;
    text-align: center;
}

.about h2,
.products h2,
.contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f59e0b, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about p {
    max-width: 700px;
    margin: auto;
    color: #b6bdd6;
    line-height: 1.8;
}

/* ---------------- PRODUCTS ---------------- */
.product-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
}

.card {
    background: linear-gradient(145deg, #141427, #0e0e18);
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: transform 0.4s, box-shadow 0.4s;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(20,184,166,0.25);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #f1f5f9;
}
.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

.price {
    margin-top: 10px;
}

.actual-price {
    text-decoration: line-through;
    color: #9ca3af;
    margin-right: 8px;
    font-size: 15px;
}

.offer-price {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #d9468f, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #d9468f, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------- FOOTER ---------------- */
footer {
    background: #07070b;
    color: #9ca3af;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}