:root {
    --black: #000000;
    --orange: #b465c5;
    --white: #ffffff;
    --gray: #d2d8d3;
    --gradin: linear-gradient(180deg, #621274 0%, #090625 100%);
    --gbuttons: linear-gradient(127deg, #BC3CD8 33%, #C54B8C 100%);
    --gback: linear-gradient(180deg, #1c0720 0%, #090625 100%);
}

body { font-family: 'Inter', sans-serif; margin: 0; background: var(--white); color: var(--black); }

/* Header & Nav */
header { background: var(--black); color: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid var(--orange); }
.nav-links a { color: var(--white); text-decoration: none; margin-left: 20px; font-weight: 600; }
.nav-links a:hover { color: var(--orange); }

/* Sidebar & Grid */
.container { display: flex; padding: 2rem 5%; gap: 30px; }
aside { width: 250px; border-right: 1px solid #eee; }
.product-grid { flex: 1; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

/* Product Card */
.card { border: 1px solid #eee; padding: 15px; transition: 0.3s; border-radius: 8px; }
.card:hover { border-color: var(--orange); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card img { width: 100%; height: 150px; object-fit: contain; }
.card h4 { color: var(--black); margin: 10px 0 5px; }
.card .brand { color: var(--orange); font-size: 0.8rem; font-weight: bold; }

/* Buttons */
.btn-orange { background: var(--gbuttons); color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-orange:hover { background: #e60099; }


/* Hero Section */
.hero-section {
    background: linear-gradient(rgb(0, 0, 0), rgba(0,0,0,0.8)), url('/static/images/hero-bg.jpg'); /* Use a techy dark background */
    background-size: cover;
    color: white;
    padding: 100px 5%;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 50px;
}

.hero-section h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-section p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.8; }

.hero-search input {
    padding: 18px 30px;
    width: 400px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.hero-search button {
    padding: 18px 40px;
    border-radius: 0 50px 50px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.f-card {
    padding: 40px;
    text-align: center;
    /* Gradient from pink to black (vertical top to bottom) */
    background: var(--gradin);
    border-radius: 12px;
    transition: 0.3s;
    color: white;
}
.f-card:hover { transform: translateY(-10px); border: 1px solid var(--orange); }
.f-card .icon { font-size: 3rem; display: block; margin-bottom: 20px; }

/* CTA Banner */
.cta-banner {
    background: var(--gradin) ;
    color: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}
header {
    background: var(--black);
    color: var(--white);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-contact {
    border: 2px solid var(--orange);
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-contact:hover {
    background: var(--orange);
    color: white !important;
}

.main-wrapper {
    min-height: 70vh;
}

/* WhatsApp Floating Button */
.whatsapp-float { position: fixed; bottom: 120px; right: 20px; font-size: 38px; background: #25d366; color: white; padding: 10px 15px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 100; text-decoration: none; }
.whatsapp-float:hover {
  color: #128C7E;     /* darker green on hover */
}

.social-icons_0:hover {
  font-size: 38px;    /* darker green on hover */
}