:root {
    --primary: #262424;
    --secondary: #f5f5f5;
    --accent: #0e4650;
    --text: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--secondary);
    line-height: 1.6;
    padding-top: 70px;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: #0e4650;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 64px; min-height: 64px; max-height: 64px;
    border-bottom: none;
    margin-bottom: 0;
}
.nav-logo { display: flex; align-items: center; }
.navbar-logo-img { height: 250px; max-height: 250px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; margin-left: auto; }
.nav-links li { position: relative; }
.nav-links a {
    color: white; text-decoration: none; font-size: 16px; font-weight: 600;
    padding: 0.5rem 0.75rem; position: relative; transition: color 0.25s;
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
    background-color: white; transition: width 0.45s; z-index: -1;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { opacity: 0.8; }

.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 36px; height: 36px; cursor: pointer; z-index: 1100; margin-left: 1rem; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; margin: 4px 0; border-radius: 2px; transition: all 0.3s; }

@media (max-width: 900px) {
    .navbar { flex-direction: column; height: auto; padding: 0.5rem 0; }
    .nav-links { gap: 1.2rem; font-size: 15px; }
    .navbar-logo-img { height: 40px; max-height: 40px; }
}
@media (max-width: 700px) {
    .navbar { flex-direction: row; height: 56px; min-height: 56px; max-height: 56px; padding: 0 0.5rem; }
    .nav-logo { padding-left: 0.2rem; }
    .navbar-logo-img { height: 36px; max-height: 36px; }
    .nav-links { gap: 0.7rem; font-size: 13px; }
    .hamburger { display: flex; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; width: 100vw; background: #0e4650; z-index: 1001; padding: 1rem 0; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 0.7rem 0; text-align: center; }
}

/* Hero Section */
.hero {
    position: relative; height: 82vh; min-height: 320px; max-height: 630px; width: 100vw;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white; overflow: hidden;
    margin-top: 0;
    background-color: #0e4650;
}
.hero .carousel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)); z-index: 2;
}
.hero-content {
    position: relative; z-index: 3; max-width: 600px; padding: 1.2rem; background-color: rgba(0,0,0,0.3); border-radius: 12px; backdrop-filter: blur(2px);
}
.hero-content h1 { font-size: 2.2rem; margin-bottom: 0.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1rem; margin-bottom: 1.2rem; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.cta-button {
    display: inline-block; padding: 0.7rem 1.5rem; background-color: #0e4650; color: white; text-decoration: none; border-radius: 30px; font-weight: 600; transition: all 0.3s; border: 2px solid transparent; font-size: 1rem;
}
.cta-button:hover { background-color: transparent; border: 2px solid #0e4650; color: #0e4650; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Feature Cards */
.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding: 5rem 5%;
}
.feature-card {
    background: white; padding: 1rem; border-radius: 10px; text-align: center; box-shadow: var(--shadow); transition: transform 0.3s; min-height: 0;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 2rem 2vw; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; gap: 0.7rem; padding: 1rem 0.5rem; } }

/* Product Cards */
.product-container {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; justify-items: center; align-items: stretch; margin: 2rem 0; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.card {
    background: white; border-radius: 12px; box-shadow: var(--shadow); padding: 2.5rem 2rem 2rem 2rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s; width: 100%; min-width: 220px; max-width: 480px; min-height: 340px; display: flex; flex-direction: column; align-items: center;
}
.card-content { display: flex; flex-direction: column; align-items: center; }
.card .background { width: 110px; height: 110px; object-fit: contain; margin-bottom: 1rem; }
.card .title h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--primary); }
.product-info { font-size: 1rem; color: #555; margin-top: 0.5rem; }
.card:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 16px 32px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,0,0,0.12); z-index: 2; }

@media (max-width: 1100px) { .product-container { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }
@media (max-width: 900px) { .product-container { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .product-container { grid-template-columns: 1fr; gap: 1rem; padding: 0 0.5rem; } .card { min-width: 0; max-width: 98vw; padding: 1.2rem 0.5rem; } }

/* Store Info & Table */
.store-info {
  background: #f8fafc; border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); margin: 2rem auto 1rem auto; padding: 2rem 2.5rem 1.5rem 2.5rem; max-width: 800px;
}
.store-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0 2.5rem 0; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.store-table caption {
  caption-side: top; font-size: 1.15rem; font-weight: 600; color: #000; padding: 0.7rem 0 0.3rem 0; background: #f0f4f8; border-bottom: 1px solid #e3e3e3;
}
.store-table th, .store-table td {
  padding: 0.75rem 1rem; text-align: left; font-size: 1rem;
}
.store-table th {
  background: #0e4650; color: #fff; font-weight: 600; border-bottom: 2px solid #b6c6e6;
}
.store-table tr:nth-child(even) td { background: #f8fafc; }
.store-table tr:hover td { background: #e3eafc; transition: background 0.2s; }
.store-table td { color: #222; border-bottom: 1px solid #f0f0f0; }
@media (max-width: 700px) { .store-table, .store-table th, .store-table td { font-size: 0.93rem; padding: 0.4rem 0.3rem; } .store-table caption { font-size: 1rem; padding: 0.4rem 0 0.2rem 0; } }
@media (max-width: 500px) { .store-table, .store-table th, .store-table td { font-size: 0.85rem; padding: 0.25rem 0.1rem; } }

/* Contact & Map Section */
.contact {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.products-title-wrapper {
    display: flex; flex-direction: column; align-items: center; margin-bottom: 0.5rem;
}
.products-title {
    font-size: 2.2rem; font-weight: 700; color: var(--primary); letter-spacing: 1px; margin-bottom: 0.1rem;
}
.products-title-underline {
    width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin-bottom: 1rem;
}
.map-section {
    margin-top: 2rem; display: flex; flex-direction: column; align-items: center; padding: 0 2rem; margin-bottom: 2.5rem;
}
.map-container {
    width: 500px; height: 350px; max-width: 100%; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin: 0 auto;
}
.map-container iframe {
    width: 100%; height: 100%; border: 0;
}
@media (max-width: 900px) { .map-container { width: 350px; height: 220px; } }
@media (max-width: 600px) { .map-container { height: 140px; } }

.findus-flex {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 1.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.map-container, .findus-contact-column {
    flex: 1 1 0;
    max-width: 50%;
}
@media (max-width: 900px) {
    .findus-flex {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        max-width: 98vw;
    }
    .map-container, .findus-contact-column {
        max-width: 100%;
        width: 100%;
    }
}

.findus-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
    height: 100%;
    justify-items: center;
    align-items: center;
}
@media (max-width: 600px) { .findus-contact-grid { grid-template-columns: 1fr; gap: 0.7rem; } }

    .contact-card {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1 1 0;
    transition: transform 0.3s;
    font-size: 1rem;
    max-width: 260px;
    min-width: 200px;
    min-height: 120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card i { font-size: 2.5rem; color: #0e4650; margin-bottom: 1rem; }
.contact-card h3 { margin-bottom: 0.5rem; font-weight: 600; }
.contact-card a { color: #0e4650; text-decoration: none; transition: color 0.3s; }
.contact-card a:hover { color: #08313a; }
.contact-card .download-btn {
    display: inline-block; margin-top: 1rem; padding: 0.7rem 1.5rem; background-color: #0e4650; color: white; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 1rem; border: 2px solid transparent; transition: all 0.3s; text-align: center;
}
.contact-card .download-btn:hover { background-color: transparent; border: 2px solid #0e4650; color: #0e4650; }
.contact-card .fa-file-download { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }

footer {
    background: var(--primary); color: var(--secondary); height: 64px; min-height: 64px; max-height: 64px; padding: 0 5%; text-align: center; display: flex; align-items: center; justify-content: center;
}
footer p { color: #f7951d; }
@media (max-width: 700px) { footer { font-size: 0.9rem; height: 44px; min-height: 44px; max-height: 44px; padding: 0 0.5rem; } }

/* Hero Carousel Images */
.carousel-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s;
  z-index: 1;
}
.carousel-image.active {
  opacity: 1;
  z-index: 2;
}

/* --- END CLEANED CSS --- */

