/* StyleMe Website - Complete CSS */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E94560;
    --secondary: #1A1A2E;
    --accent: #D4A574;
    --text: #333;
    --text-light: #666;
    --bg: #FFFFFF;
    --bg-alt: #F8F9FA;
    --border: #E0E0E0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #D13651;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #151524;
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-download {
    background: var(--accent);
    color: var(--secondary);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Features */
.features-preview {
    background: var(--bg-alt);
}

.features-preview h2,
.how-it-works h2,
.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* How It Works */
.steps {
    max-width: 900px;
    margin: 3rem auto 0;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.step-reverse {
    direction: rtl;
}

.step-reverse .step-content {
    direction: ltr;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.step-number {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: var(--bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #D13651 100%);
    color: white;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Feature Detail Pages */
.feature-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-detail-row-reverse {
    direction: rtl;
}

.feature-detail-row-reverse .feature-detail-content {
    direction: ltr;
}

.feature-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

.feature-highlight {
    background: #FFF9E6;
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    margin: 1.5rem 0;
    font-weight: 500;
}

.info-box {
    background: #E3F2FD;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.tier-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.retailer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.retailer {
    background: var(--bg-alt);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0.25rem;
}

.period {
    font-size: 1.5rem;
    color: var(--text-light);
}

.pricing-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.free-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.how-it-makes-money {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.revenue-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.revenue-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.partner-logo {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-weight: 600;
    color: var(--text);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.form-success {
    background: #E8F5E9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.form-success h3 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-card a {
    color: var(--primary);
    font-weight: 500;
}

.info-card a:hover {
    text-decoration: underline;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.social-links {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-link-card .arrow {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-light);
}

.faq-item a {
    color: var(--primary);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .feature-detail-row,
    .step,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-links-grid,
    .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .features-grid,
    .testimonials-grid,
    .quick-links-grid,
    .revenue-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    .hero-content h1 { font-size: 2.25rem; }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Professional Updates - Remove emoji styling */
.feature-icon,
.quick-link-icon,
.revenue-icon,
.info-icon {
    display: none;
}

/* Professional feature cards with accent border */
.feature-card {
    border-top: 4px solid var(--primary);
    position: relative;
}

.feature-card:nth-child(even) {
    border-top-color: var(--accent);
}

/* Professional quick-link cards */
.quick-link-card {
    border-left: 4px solid var(--primary);
}

/* Professional info cards */
.info-card {
    border-left: 3px solid var(--primary);
}

/* Replace stars with professional rating text */
.rating-text {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stars {
    display: none;
}

/* Revenue cards with subtle accent */
.revenue-card {
    border-top: 3px solid var(--accent);
}

/* Mobile Menu Fix - Make it actually work */
@media (max-width: 640px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
        cursor: pointer;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Professional Company Logos Styling */
.partner-logo {
    background: white !important;
    padding: 1.5rem 2.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    font-weight: 700 !important;
    color: var(--secondary) !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border: 2px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
}

.partner-logo:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    border-color: var(--primary) !important;
}

/* Specific brand colors */
.partner-logo:nth-child(1) { /* Woolworths */
    color: #009B3A !important;
}

.partner-logo:nth-child(2) { /* Mr Price */
    color: #E2001A !important;
}

.partner-logo:nth-child(3) { /* Zara */
    color: #000000 !important;
}

.partner-logo:nth-child(4) { /* H&M */
    color: #E50010 !important;
}

.partner-logo:nth-child(5) { /* Superbalist */
    color: #000000 !important;
    font-style: italic !important;
}

.partner-logo:nth-child(6) { /* Zando */
    color: #FF6B6B !important;
}

.partner-logo:nth-child(7) { /* Bash */
    color: #1A1A1A !important;
}

.partner-logo:nth-child(8) { /* Edgars */
    color: #C41E3A !important;
}

.partner-logo:nth-child(9) { /* Cotton On */
    color: #000000 !important;
}

/* ========================================
   MOBILE MENU FIX - ENHANCED VERSION
   ======================================== */

/* Override previous mobile menu styles */
@media (max-width: 640px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: white !important;
        width: 100% !important;
        text-align: center !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
        padding: 2rem 0 !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 1.5rem 0 !important;
        display: block !important;
        width: 100% !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 0.5rem 1rem !important;
        font-size: 1.1rem !important;
    }
}

/* ========================================
   RETAILER LOGOS - ACTUAL BRAND STYLING
   ======================================== */

/* Enhanced partner logos with brand identities */
.partner-logos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
}

.partner-logo {
    background: white !important;
    padding: 2rem 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    font-weight: 900 !important;
    font-size: 1.3rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: 3px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.partner-logo:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15) !important;
}

/* Individual brand styling */
.partner-logo:nth-child(1) {
    /* Woolworths */
    color: #009B3A !important;
    border-color: #009B3A !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
}

.partner-logo:nth-child(2) {
    /* Mr Price */
    color: #E2001A !important;
    border-color: #E2001A !important;
    font-family: 'Impact', 'Arial Black', sans-serif !important;
}

.partner-logo:nth-child(3) {
    /* Zara */
    color: #000000 !important;
    border-color: #000000 !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 8px !important;
}

.partner-logo:nth-child(4) {
    /* H&M */
    color: #E50010 !important;
    border-color: #E50010 !important;
    font-family: 'Futura', 'Arial Black', sans-serif !important;
    font-weight: 900 !important;
}

.partner-logo:nth-child(5) {
    /* Superbalist */
    color: #000000 !important;
    border-color: #000000 !important;
    font-family: 'Georgia', serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
}

.partner-logo:nth-child(6) {
    /* Zando */
    color: #FF6B6B !important;
    border-color: #FF6B6B !important;
    font-family: 'Arial Rounded', Arial, sans-serif !important;
    font-weight: 800 !important;
}

.partner-logo:nth-child(7) {
    /* Bash */
    color: #1A1A1A !important;
    border-color: #1A1A1A !important;
    font-family: 'Arial', sans-serif !important;
    font-weight: 900 !important;
    text-transform: lowercase !important;
}

.partner-logo:nth-child(8) {
    /* Edgars */
    color: #C41E3A !important;
    border-color: #C41E3A !important;
    font-family: 'Times New Roman', serif !important;
    font-weight: 700 !important;
}

.partner-logo:nth-child(9) {
    /* Cotton On */
    color: #000000 !important;
    border-color: #000000 !important;
    font-family: 'Arial', sans-serif !important;
    font-weight: 900 !important;
}

/* ========================================
   PROFESSIONAL RETAILER LOGOS
   ======================================== */

.partner-logos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 2rem !important;
    margin: 4rem 0 !important;
    padding: 0 !important;
}

.partner-logo {
    background: white !important;
    padding: 2.5rem 2rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    font-weight: 900 !important;
    font-size: 1.8rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: 4px solid transparent !important;
    transition: all 0.4s ease !important;
    text-align: center !important;
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2) !important;
}

/* Woolworths - Green */
.partner-logo:nth-child(1) {
    color: #009B3A !important;
    border-color: #009B3A !important;
    font-family: 'Arial Black', Arial, sans-serif !important;
    font-size: 2rem !important;
}

.partner-logo:nth-child(1):hover {
    background: linear-gradient(135deg, #009B3A 0%, #00b844 100%) !important;
    color: white !important;
}

/* Mr Price - Red */
.partner-logo:nth-child(2) {
    color: #E2001A !important;
    border-color: #E2001A !important;
    font-family: 'Impact', 'Arial Black', sans-serif !important;
    font-size: 1.9rem !important;
}

.partner-logo:nth-child(2):hover {
    background: linear-gradient(135deg, #E2001A 0%, #ff1a2e 100%) !important;
    color: white !important;
}

/* Zara - Black, very spaced letters */
.partner-logo:nth-child(3) {
    color: #000000 !important;
    border-color: #000000 !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 12px !important;
    font-size: 2.2rem !important;
    font-weight: 300 !important;
}

.partner-logo:nth-child(3):hover {
    background: #000000 !important;
    color: white !important;
}

/* H&M - Bold Red */
.partner-logo:nth-child(4) {
    color: #E50010 !important;
    border-color: #E50010 !important;
    font-family: 'Futura', 'Arial Black', sans-serif !important;
    font-weight: 900 !important;
    font-size: 2.3rem !important;
}

.partner-logo:nth-child(4):hover {
    background: linear-gradient(135deg, #E50010 0%, #ff0015 100%) !important;
    color: white !important;
}

/* Superbalist - Black Italic */
.partner-logo:nth-child(5) {
    color: #000000 !important;
    border-color: #000000 !important;
    font-family: 'Georgia', serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 1.7rem !important;
}

.partner-logo:nth-child(5):hover {
    background: #000000 !important;
    color: white !important;
}

/* Zando - Coral/Pink */
.partner-logo:nth-child(6) {
    color: #FF6B6B !important;
    border-color: #FF6B6B !important;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
}

.partner-logo:nth-child(6):hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #ff8585 100%) !important;
    color: white !important;
}

/* Bash - Lowercase, Modern */
.partner-logo:nth-child(7) {
    color: #1A1A1A !important;
    border-color: #1A1A1A !important;
    font-family: 'Arial', sans-serif !important;
    font-weight: 900 !important;
    text-transform: lowercase !important;
    font-size: 2.1rem !important;
}

.partner-logo:nth-child(7):hover {
    background: #1A1A1A !important;
    color: white !important;
}

/* Edgars - Serif, Classic */
.partner-logo:nth-child(8) {
    color: #C41E3A !important;
    border-color: #C41E3A !important;
    font-family: 'Times New Roman', serif !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
}

.partner-logo:nth-child(8):hover {
    background: linear-gradient(135deg, #C41E3A 0%, #d92347 100%) !important;
    color: white !important;
}

/* Cotton On - Modern Sans */
.partner-logo:nth-child(9) {
    color: #000000 !important;
    border-color: #000000 !important;
    font-family: 'Helvetica Neue', Arial, sans-serif !important;
    font-weight: 900 !important;
    font-size: 1.8rem !important;
}

.partner-logo:nth-child(9):hover {
    background: #000000 !important;
    color: white !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .partner-logo {
        font-size: 1.4rem !important;
        padding: 2rem 1.5rem !important;
        min-height: 100px !important;
    }
    
    .partner-logo:nth-child(3) {
        letter-spacing: 8px !important;
        font-size: 1.6rem !important;
    }
}

/* ========================================
   MOBILE MENU - DEFINITIVE FIX
   ======================================== */

/* Hamburger icon - base styling */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Mobile styles - show hamburger, hide regular menu */
@media (max-width: 640px) {
    /* SHOW hamburger on mobile */
    .hamburger {
        display: flex !important;
    }
    
    /* HIDE regular navigation on mobile */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: white !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        text-align: center !important;
        transition: left 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15) !important;
        z-index: 1001 !important;
        padding: 2rem 0 !important;
        overflow-y: auto !important;
    }
    
    /* SHOW menu when active */
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Menu items */
    .nav-menu li {
        margin: 1.5rem 0 !important;
        display: block !important;
        width: 100% !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 1rem !important;
        font-size: 1.2rem !important;
        color: var(--secondary) !important;
    }
    
    .nav-menu a:hover {
        background: rgba(233, 69, 96, 0.1) !important;
    }
    
    /* Download button */
    .btn-download {
        margin: 1rem auto !important;
        display: inline-block !important;
        background: var(--primary) !important;
        color: white !important;
        padding: 0.8rem 2rem !important;
        border-radius: 8px !important;
    }
    
    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden !important;
}

/* Make sure navbar has proper stacking */
.navbar {
    position: relative;
    z-index: 1000;
}

.nav-container {
    position: relative;
}

/* ========================================
   MOBILE MENU - ABSOLUTE FIX (CSS ONLY ISSUE)
   ======================================== */

/* Force show the menu on mobile when active */
@media (max-width: 640px) {
    /* Base hamburger - always visible on mobile */
    .hamburger {
        display: flex !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    /* Navigation menu - HIDDEN by default */
    .nav-menu {
        display: flex !important;
        position: fixed !important;
        left: -100% !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: #FFFFFF !important;
        width: 100vw !important;
        height: calc(100vh - 70px) !important;
        text-align: center !important;
        transition: left 0.3s ease-in-out !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2) !important;
        z-index: 9999 !important;
        padding: 2rem 0 !important;
        overflow-y: auto !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    /* Navigation menu - VISIBLE when active */
    .nav-menu.active {
        display: flex !important;
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Make sure items are visible */
    .nav-menu li {
        display: block !important;
        margin: 1.5rem 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu li a {
        display: block !important;
        padding: 1rem 2rem !important;
        font-size: 1.2rem !important;
        color: #1A1A2E !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: rgba(233, 69, 96, 0.1) !important;
        color: #E94560 !important;
    }
    
    /* Make sure download button is visible */
    .nav-menu .btn-download {
        display: inline-block !important;
        background: #E94560 !important;
        color: white !important;
        padding: 1rem 2rem !important;
        border-radius: 8px !important;
        margin: 1rem auto !important;
        text-decoration: none !important;
    }
}

/* Desktop - hide hamburger, show menu normally */
@media (min-width: 641px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: relative !important;
        left: 0 !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
    }
}

/* ========================================
   RETAILER LOGO IMAGES - ACTUAL IMAGES
   ======================================== */

/* Override previous text-based logo styling */
.partner-logos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 2rem !important;
    margin: 4rem 0 !important;
    padding: 0 !important;
}

.partner-logo {
    background: white !important;
    padding: 2rem !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    border: 2px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    /* Remove all text styling */
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    font-family: inherit !important;
    font-style: inherit !important;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15) !important;
    border-color: var(--primary) !important;
    /* Remove background gradient on hover */
    background: white !important;
}

.partner-logo img {
    max-width: 140px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .partner-logo {
        padding: 1.5rem !important;
        min-height: 100px !important;
    }
    
    .partner-logo img {
        max-width: 120px !important;
        max-height: 60px !important;
    }
}
