:root {
    --primary-color: #000000;
    --secondary-color: #222222;
    --accent-color: #ffb0b0; /* Peach from logo */
    --accent-hover: #ff9191;
    --wa-green: #25D366;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #fff5f5; /* Light peach tint */
    --white: #ffffff;
    --border-color: #f0e6e6;
    --card-shadow: 0 10px 15px -3px rgba(255, 176, 176, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(255, 176, 176, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
}

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

.text-left {
    text-align: left;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
}

/* Buttons (Uiverse inspired) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    gap: 10px;
    border: none;
}

.uiverse-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.uiverse-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.uiverse-btn:hover::before {
    opacity: 1;
}

.uiverse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 176, 176, 0.4);
    color: var(--primary-color);
}

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

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

.center-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-large {
    font-size: 1.3rem;
    padding: 18px 36px;
}

/* Sticky WhatsApp */
.sticky-wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--wa-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.sticky-wa-btn:hover {
    transform: scale(1.1);
}

.wa-text {
    display: none;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white; /* Make text white for image backgrounds */
}

.hero-slideshow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeAnim 15s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeAnim {
    0%   { opacity: 0; transform: scale(1); }
    10%  { opacity: 1; }
    33%  { opacity: 1; }
    43%  { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.65); /* Dark overlay for text readability */
    z-index: 1;
}

/* Desktop: Show all 3 images side-by-side */
@media (min-width: 769px) {
    .hero-slideshow {
        display: flex;
        background-color: #0f172a; /* Dark background to fill any gaps smoothly */
    }
    .hero-slide {
        position: relative;
        flex: 1;
        opacity: 1;
        animation: none;
        width: auto;
        background-size: contain; /* Prevents image from cutting */
        background-position: center;
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    .hero-slide:last-child {
        border-right: none;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    color: white; /* Changed for dark bg */
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.brand-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero .subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.trust-stat {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.trust-stat.in-view {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat:nth-child(1) { transition-delay: 0s; }
.trust-stat:nth-child(2) { transition-delay: 0.15s; }
.trust-stat:nth-child(3) { transition-delay: 0.3s; }
.trust-stat:nth-child(4) { transition-delay: 0.45s; }

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

.trust-stat p {
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Premium Card Style */
.premium-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(30, 41, 59, 0.2);
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; height: 3px; width: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.premium-card:hover::after {
    width: 100%;
}

/* Scroll Animation Down */
.scroll-anim-down {
    opacity: 0;
    transform: translateY(-40px); /* Starts from above */
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-anim-down.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering for the 4 cards */
.solutions .scroll-anim-down:nth-child(1) { transition-delay: 0s; }
.solutions .scroll-anim-down:nth-child(2) { transition-delay: 0.15s; }
.solutions .scroll-anim-down:nth-child(3) { transition-delay: 0.3s; }
.solutions .scroll-anim-down:nth-child(4) { transition-delay: 0.45s; }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Catalog Grid and Premium Cards */
.catalog-grid, .grid-4.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
}

.catalog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.catalog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15), 0 0 20px rgba(255,176,176,0.3);
    border-color: var(--accent-color);
    z-index: 2;
}

.c-img {
    height: 400px;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
}

.c-info {
    padding: 20px;
}

.c-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.c-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.c-moq {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Quality Section */
.quality-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.quality-text, .quality-video {
    flex: 1;
    min-width: 300px;
}

.quality-images {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.q-img-placeholder {
    width: 150px;
    height: 150px;
    background-color: var(--bg-light);
    border: 1px dashed var(--text-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 10px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.play-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
}

.step {
    flex: 1;
    position: relative;
    z-index: 2;
    background: var(--bg-light);
    padding: 0 10px;
}

.step-num {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-divider {
    flex: 0.5;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 30px;
}

/* Testimonials */
.quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.retailer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.retailer-info h4 {
    margin-bottom: 2px;
}

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

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Footer */
footer {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-light);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 80px;
    border-radius: 5px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-hover);
}

.nav-btn {
    padding: 10px 20px;
    background-color: var(--wa-green);
    color: white;
    border-radius: 8px;
}
.nav-btn:hover { background-color: #1da851; color: white; }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

/* Page Headers */
.page-header {
    background-color: var(--bg-light);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Form Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-hover);
    box-shadow: 0 0 0 3px rgba(255, 176, 176, 0.2);
}

/* Single Product */
.product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.product-image-large {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}
.product-details-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.product-price-large {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}
.product-meta {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}
.product-meta p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Space for sticky bar */
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-slide {
        background-position: top center;
    }
    .logo-text {
        font-size: 1rem;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
    }
    .contact-grid, .product-single-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .catalog-grid, .grid-4.catalog-grid {
        grid-template-columns: 1fr !important;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .trust-stat {
        flex: 1 1 40%;
    }
    .quality-content {
        flex-direction: column;
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    .step-divider {
        display: none;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .sticky-wa-btn {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 60px;
        border-radius: 0;
        gap: 10px;
        font-size: 1.2rem;
        font-weight: 600;
    }
    .sticky-wa-btn:hover {
        transform: none;
    }
    .wa-text {
        display: block;
    }
}

/* Security / Anti-Theft CSS */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
