/* Androsax Mainpage Styles */

/* --- Layout styles --- */
/* Navigation Bar */
.navbar {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.navbar-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-logo-img {
    /* Stacked lion + wordmark: keep readable width, constrained height */
    height: 72px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.navbar-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-cta {
    margin: 0;
    padding: 12px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-cta i {
    font-size: 18px;
}

/* Navbar responsive fixes (logo + CTA) */
@media (max-width: 768px) {
    .navbar-content {
        padding: 8px 0;
        gap: 12px;
    }

    .navbar-logo-img {
        height: 56px;
        max-width: 150px;
    }

    .navbar-cta {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .navbar-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-actions {
        width: 100%;
        justify-content: center;
    }

    .navbar-logo-img {
        height: 48px;
        max-width: 130px;
    }

    .navbar-cta {
        width: 100%;
        max-width: 320px;
    }
}

/* Hero Section Enhancements */
.slim-q-hero .hero-text {
    max-width: 600px;
}

.hero-pretitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-tagline {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-q {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 0;
}

.hero-buttons .cta-button.secondary:hover {
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

/* Trust Badges Section */
.trust-badges {
    padding: 60px 20px;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-badge-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.trust-badge-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Product Collection Section */
.product-collection {
    padding: 80px 20px;
    background-color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border: none;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.product-category {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.product-carousel-indicators {
    display: none;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.product-collection-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Unique Formulation Section */
.unique-formulation {
    padding: 80px 20px;
    background: var(--gradient-hero);
}

.unique-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.unique-text {
    flex: 1;
}

.unique-content .section-title {
    text-align: left;
}

.unique-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.unique-feature {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.unique-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.unique-tagline {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 600;
    margin: 30px 0;
    line-height: 1.6;
}

.unique-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unique-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
}

/* It's Easy Section (base) */
.its-easy {
    padding: 0;
    color: white;
    background-image: url('img/bg1.webp');
    background-position: center 40%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: relative;
}

.its-easy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.92);
    pointer-events: none;
}

.its-easy-container {
    position: relative;
    z-index: 1;
    padding: 64px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.its-easy-title {
    text-align: center;
    margin: 0;
    font-size: 36px;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 700;
}

.its-easy-stats {
    list-style: none;
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.its-easy-stat {
    border-radius: 18px;
    padding: 26px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.its-easy-percent {
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
    font-size: 56px;
    margin-bottom: 14px;
}

.its-easy-badge {
    width: 100%;
    max-width: 280px;
    height: 32px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.its-easy-badge-fill {
    height: 100%;
    width: calc(var(--p) * 1%);
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(220, 230, 245, 0.9) 100%);
}

.its-easy-heading {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.its-easy-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.65;
}

.its-easy-cta {
    margin-top: 8px;
}

/* Build Ritual Section (base) */
.build-ritual {
    padding: 80px 20px;
    background: var(--gradient-hero);
}

.ritual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ritual-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ritual-time {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ritual-period {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ritual-period i {
    font-size: 24px;
    color: var(--primary-muted);
}

.ritual-products {
    margin-bottom: 15px;
}

.ritual-product {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.ritual-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ritual-button-center {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Money Back Section (base) */
.money-back {
    padding: 60px 20px;
    background: var(--dark-blue);
    color: white;
    text-align: center;
}

.money-back-content .section-title {
    color: white;
    margin-bottom: 20px;
}

.money-back-content .section-title strong {
    color: white;
}

.money-back-content .section-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Build Ritual Section */
.build-ritual {
    background: var(--gradient-hero);
}

/* Money Back Section */
.money-back {
    background: var(--dark-blue);
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 0 20px 0;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-card {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .product-carousel-indicators {
        display: flex;
    }

    .unique-content {
        flex-direction: column;
        gap: 40px;
    }

    .unique-image {
        order: -1;
    }

    .ritual-grid {
        grid-template-columns: 1fr;
    }

    .its-easy-container {
        padding: 52px 20px;
    }

    .its-easy-title {
        font-size: 28px;
    }

    .its-easy-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

