@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #080c14;
    --card-bg: #141b2d;
    --card-accent: #1e293b;
    --accent: #0ea5e9;
    --accent-light: #7dd3fc;
    --brand-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

header {
    padding: 3rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.logo {
    max-width: 150px;
    height: auto;
}

.hero {
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-sub {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
}

.hero h1 span {
    font-style: italic;
    color: var(--accent);
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.trust-item i {
    color: var(--accent);
    margin-right: 8px;
    font-style: normal;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

/* Products Cards - Nike Inspired Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 8rem 4rem; /* Wide vertical gap for the image overhang */
    padding-top: 4rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 48px; /* Extra rounded as in Nike example */
    padding: 3rem 2.5rem 2.5rem;
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.floating-img-wrap {
    position: absolute;
    top: -100px; /* Overhang effect */
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    z-index: 20;
    pointer-events: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: none;
}



.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px; /* Spacer for the image above */
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.gpd-badge {
    background: #93c5fd; /* Light blue badge from image */
    color: #1e3a8a;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
}

.price-marked {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.currency-symbol {
    height: 40px;
    width: auto;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(178deg) brightness(91%) contrast(101%); /* Premium Liquid Blue */
    opacity: 1;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.product-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    opacity: 0.8;
}

.product-features li::before {
    content: "•";
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.2rem;
}

.promo-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.p-tag {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    background: var(--brand-gradient);
}
/* Removed individual tag colors for unified brand scheme */

.buy-pill {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 1.2rem;
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.buy-pill:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* Unified Model Style */
.card-accent {
    background: #1e293b;
}

/* FAQ Section */
.faq-wrap {
    max-width: 800px;
    margin: 8rem auto 0;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass);
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q span {
    color: #ffffff; /* Vivid red for clear indication */
    font-size: 1.8rem;
    font-weight: 700;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}

.faq-item.active .faq-q span {
    transform: rotate(45deg);
    color: var(--text-muted);
}

.faq-q:hover {
    background: rgba(255,255,255,0.03);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.faq-item.active .faq-a {
    padding-bottom: 2rem;
    max-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10rem 0;
    }
    .hero h1 { font-size: 2.5rem; }
}

/* Support Actions */
.support-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 6rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 240px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.whatsapp-btn {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
}

.maintenance-btn {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.2);
}

.whatsapp-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.4);
}

.maintenance-btn:hover {
    background: var(--brand-gradient);
    color: #fff;
}
