/* Lassana.com Clone Styling */
:root {
    --primary-green: #116a3b;
    --primary-orange: #f06424;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --text-dark: #333333;
    --text-muted: #777777;
    --white: #ffffff;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 12px;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
}
.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-left: 15px;
}

/* Main Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo img {
    height: 50px;
}
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}
.search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 20px 0 0 20px;
    outline: none;
}
.search-bar button {
    padding: 10px 20px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    font-weight: bold;
}
.header-actions {
    display: flex;
    gap: 20px;
}
.header-actions a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    padding: 10px 5%;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}
.main-nav a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
}
.hero-content h1 {
    color: var(--primary-green);
    margin: 0 0 10px 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
}

/* Categories Circles */
.category-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.category-circle {
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    width: 120px;
    transition: transform 0.3s;
}
.category-circle:hover {
    transform: translateY(-5px);
}
.category-circle img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid var(--primary-green);
    padding: 3px;
}
.category-circle p {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* Product Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    padding: 10px;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.card:hover img {
    transform: scale(1.05);
}
.card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-title {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-weight: 600;
}
.card-desc {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
    flex: 1;
}
.card-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 15px;
}
.btn-main {
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    display: block;
    transition: background 0.3s;
    text-transform: uppercase;
}
.btn-main:hover {
    background: var(--primary-orange);
}

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 5px 20px;
}
footer p {
    margin: 0;
    font-size: 11px;
}

/* Features Banner */
.features-banner {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 1 1 250px;
    max-width: 300px;
}
.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}
.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
}
.feature-text p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    header { flex-wrap: wrap; }
    .logo { order: 1; }
    .header-actions { order: 2; margin-left: auto; }
    .search-bar { order: 3; flex: 0 0 100%; max-width: 100%; margin: 15px 0 0 0; }
    .hero { height: 250px; }
    .hero-content { padding: 20px; width: 80%; }
    .category-circles { gap: 15px; }
    .category-circle { width: 80px; }
    .category-circle img { width: 70px; height: 70px; }
    .features-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.2); }
    .feature-item { flex: none; flex-direction: row; text-align: left; gap: 8px; width: 100%; padding: 15px 10px; justify-content: flex-start; border-bottom: 1px solid rgba(255,255,255,0.2); border-right: 1px solid rgba(255,255,255,0.2); box-sizing: border-box; }
    .feature-item:nth-child(even) { border-right: none; }
    .feature-item:nth-last-child(-n+2) { border-bottom: none; }
    .feature-icon svg { width: 28px; height: 28px; }
    .feature-text h4 { font-size: 12px; margin-bottom: 2px; line-height: 1.2; }
    .feature-text p { font-size: 10px; line-height: 1.2; }
    .top-bar { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .main-nav { flex-direction: column; padding: 10px 5%; align-items: center; overflow: hidden; }
    .main-nav > div { width: 100%; display: flex !important; justify-content: flex-start !important; flex: none !important; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 0; padding-bottom: 0; }
    .main-nav > div:first-child { display: none !important; }
    .main-nav > div:last-child { justify-content: center !important; margin-top: 10px; }
    .main-nav a { margin: 5px 15px 5px 0; display: inline-block; white-space: nowrap; }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}
