:root {
    --primary-color: #662d91;
    /* Purple from logo */
    --secondary-color: #0d1b2a;
    /* Dark Navy for contrast */
    --accent-color: #f15a24;
    /* Orange/Red from logo */
    --highlight-color: #00aeef;
    /* Cyan/Blue from logo */
    --gradient-logo: linear-gradient(90deg, #00aeef 0%, #662d91 50%, #f15a24 100%);
    --gradient-primary: linear-gradient(135deg, #662d91 0%, #9e0059 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: #fff;
    /* Clean white background to let colors pop */
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Utilities --- */
.text-gradient {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.section-padding {
    padding: 80px 0;
}

/* --- Navbar --- */
.navbar {
    background-color: white;
    /* Clean white navbar */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.navbar-brand img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
    margin-right: 10px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--highlight-color) !important;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('img/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    color: white !important;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary-custom {
    background-image: var(--gradient-logo);
    background-size: 200% auto;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: 0.5s;
}

.btn-primary-custom:hover {
    background-position: right center;
    /* Gradient animation */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 45, 145, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    padding: 10px 30px;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
}

/* --- Product Cards --- */
.product-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background: #fff;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 10px;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.price-tag {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

.payment-highlight {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.05) 0%, rgba(102, 45, 145, 0.05) 100%);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid rgba(0, 174, 239, 0.1);
}

.daily-price {
    color: var(--accent-color);
    /* Orange for price pop */
    font-weight: 800;
    font-size: 1.2rem;
}

/* --- Features Section --- */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
}

.feature-icon {
    font-size: 3rem;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 80px 0 30px;
}

footer h5 {
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
}

footer a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--highlight-color);
}

footer p {
    color: rgba(255, 255, 255, 0.95);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
}

/* --- Animations --- */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* --- Loader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--highlight-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}