:root {
    --primary-color: #162336;
    --secondary-color: #6c7a86;
    --accent-color: #d4a373;
    --text-color: #222;
    --light-bg: #f5f5f7;
    --white: #ffffff;
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #f1f2f4;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Ticker Bar */
.ticker-wrapper {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1001;
    height: 32px;
    display: flex;
    align-items: center;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    padding: 0 50px;
    font-size: 0.85rem;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 32px;
    z-index: 1000;
    padding: 10px 0;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 780px;
}

.hero h1 {
    font-size: 3.1rem;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 26px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 70px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

/* Cards */
.feature-card {
    text-align: center;
    padding: 26px 22px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.prod-item {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.prod-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prod-item h4 {
    padding: 15px;
    color: var(--primary-color);
}

.prod-item:hover {
    transform: translateY(-4px);
}

/* Footer */
.footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer h3, .footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1002;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1003;
    display: none; /* Controlled by JS */
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-btns {
    margin-top: 15px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
    margin: 5px;
}

/* Page Contents */
.content-page {
    padding: 60px 0 70px;
}

.content-page h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
    letter-spacing: 0.04em;
}

.text-block {
    margin-bottom: 30px;
    font-size: 0.98rem;
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 26px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
        padding-bottom: 10px;
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .hamburger {
        display: block;
    }

    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }

    .cookie-banner {
        align-items: flex-start;
        text-align: left;
        padding: 16px 18px;
    }
}