/* L & L Engines & Spares - Main Stylesheet */

:root {
    --primary-color: #0A1931;
    --secondary-color: #D4AF37;
    --accent-color: #185ADB;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --error-color: #DC3545;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Arial', 'Helvetica', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

html, body { overflow-x: hidden; }

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

/* Header Styles */
.main-header {
    background-color: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.header-top {
    background-color: rgba(0,0,0,0.2);
    padding: 10px 0;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.whatsapp-link {
    color: #25D366;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.main-nav {
    padding: 18px 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d1f3d 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.nav-wrapper {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(3px);
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--secondary-color);
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    font-weight: 700;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.logo:hover h1 {
    color: #f0d475;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.3);
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.logo img.theme-tint {
    filter: grayscale(100%) brightness(0.9) invert(64%) sepia(82%) saturate(600%) hue-rotate(350deg) contrast(95%);
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 4px;
    align-items: center;
    flex-direction: row !important;
    margin: 0;
    padding: 0 15px;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 18px;
    border-radius: 4px;
    display: block;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background-color: rgba(212, 175, 55, 0.12);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
    color: var(--secondary-color);
    background-color: rgba(212, 175, 55, 0.18);
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .fa-chevron-down {
    font-size: 10px;
    margin-left: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.dropdown:hover .fa-chevron-down {
    opacity: 1;
    transform: rotate(180deg);
}

.nav-menu .nav-placeholder a {
    color: rgba(255, 255, 255, 0.7);
    cursor: not-allowed;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    list-style: none;
    padding: 8px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text-dark);
    padding: 12px 20px;
    display: block;
    text-transform: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    line-height: 1.5;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.dropdown-menu a.depth-1 {
    font-weight: 600;
}

.dropdown-menu a.depth-2 {
    padding-left: 28px;
    font-size: 13px;
    opacity: 0.9;
}

.dropdown-menu a.depth-3,
.dropdown-menu a.depth-4 {
    padding-left: 36px;
    font-size: 12px;
    opacity: 0.85;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--secondary-color);
    padding-left: 25px;
}

.dropdown-menu a strong {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.search-toggle,
.mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover,
.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 16px;
}

.search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.search-bar.active {
    max-height: 100px;
    padding: 15px 0;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.search-form button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}

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

.btn-primary:hover {
    background-color: #B8941F;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Quick Search Section */
.quick-search-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.quick-search-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.quick-search-box h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.search-inputs {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

/* Category Showcase */
.category-showcase {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.category-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.category-icon {
    width: 100%;
    height: 200px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-color);
}

.category-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.category-card p {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 14px;
}

.category-link {
    display: block;
    padding: 15px 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 48px;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--error-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
    min-height: 50px;
}

.product-code {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 10px;
}

.product-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.current-price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
}

.contact-price {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background-color: var(--bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

/* Category Page */
.category-header {
    padding: 40px 0;
    text-align: center;
}

.category-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.category-content {
    padding: 40px 0 60px;
}

.category-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.filters-sidebar {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.filters-header h3 {
    color: var(--primary-color);
    font-size: 20px;
}

.clear-filters {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.subcategory-filters {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subcategory-link {
    display: block;
    padding: 10px 15px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    font-size: 14px;
}

.subcategory-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.subcategory-link.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 8px 15px;
    border: none;
    opacity: 0.5;
}

.filter-select,
.price-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    flex: 1;
}

.products-section {
    min-height: 400px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-count {
    color: var(--text-light);
    font-size: 14px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-products h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-dots {
    padding: 10px 5px;
}

/* Product Detail */
.product-detail-section {
    padding: 40px 0 60px;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 500px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 80px;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.thumbnail.active {
    border-color: var(--secondary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-info-detail h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-code-detail {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-price-detail {
    margin-bottom: 25px;
}

.contact-price-large {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 700;
}

.product-short-desc {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.meta-item i {
    color: var(--secondary-color);
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.tab-pane {
    display: none;
    padding: 20px 0;
}

.tab-pane.active {
    display: block;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.specifications-table td:first-child {
    width: 200px;
    color: var(--text-light);
}

/* Contact Page */
.contact-section {
    padding: 40px 0 60px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form-section,
.contact-info-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.business-hours-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.business-hours-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.business-hours {
    color: var(--text-dark);
    line-height: 1.8;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-section {
    margin-top: 40px;
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* About Page */
.about-section {
    padding: 40px 0 60px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-choose-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.feature-item i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.services-list {
    list-style: none;
    margin: 20px 0;
}

.services-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list i {
    color: var(--secondary-color);
    font-size: 20px;
}

.contact-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 10px;
    margin-top: 60px;
}

.contact-cta h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Privacy Policy */
.privacy-policy-section {
    padding: 40px 0 60px;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Value Propositions */
.value-propositions {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.proposition-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.proposition-card:hover {
    transform: translateY(-5px);
}

.proposition-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.proposition-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.proposition-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column !important;
        padding: 80px 20px 20px;
        transition: left 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .category-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .search-inputs {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 998;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }
body.no-scroll { overflow: hidden; }

@media (max-width: 768px) {
    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 6px 0 10px 10px;
    }
    .nav-menu .dropdown.open > .dropdown-menu { display: block; }
    .nav-menu .dropdown > a { display: flex; justify-content: space-between; align-items: center; }
}

/* Tablet/Desktop narrow widths: prevent right-side actions from overflowing */
@media (max-width: 1200px) {
    .main-nav .container { padding: 0 12px; }
    .nav-menu a { padding: 8px 12px; }
    .nav-actions { margin-left: 8px; padding-left: 8px; }
    .whatsapp-btn { padding: 8px 10px; }
}

@media (max-width: 1100px) {
    .nav-menu { flex-wrap: wrap; }
    .nav-actions { border-left: none; padding-left: 0; }
}

@media (max-width: 992px) {
    .nav-menu a { padding: 7px 10px; }
    .whatsapp-btn { font-size: 0; padding: 8px; }
    .whatsapp-btn i { font-size: 18px; }
}
