/* =====================================================
   LED24H - Main Stylesheet
   Giao diện chính cho website LED24H
   ===================================================== */

/* =====================================================
   RESET & BASE STYLES
   ===================================================== */

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

/* =====================================================
   FOOTER CONTAINER STYLES
   ===================================================== */

.footer-container-1260 {
    max-width: 1260px !important;
    width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1300px) {
    .footer-container-1260 {
        width: 100%;
        max-width: 100% !important;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-container-1260 {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-container-1260 {
        padding: 0 15px;
    }
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   CONTAINER & LAYOUT
   ===================================================== */

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

/* =====================================================
   COLORS & THEME
   ===================================================== */

:root {
    /* Primary Orange Colors */
    --primary-orange: #ff6b35;
    --primary-orange-light: #ff8a5c;
    --primary-orange-dark: #e55a2b;
    --primary-orange-darker: #d14a1f;
    
    /* Secondary Orange Colors */
    --secondary-orange: #f7931e;
    --secondary-orange-light: #f9a847;
    --secondary-orange-dark: #d4851a;
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    --gradient-primary-hover: linear-gradient(135deg, var(--primary-orange-dark), var(--secondary-orange-dark));
    
    /* Shadow Colors */
    --shadow-orange: rgba(255, 107, 53, 0.3);
    --shadow-orange-light: rgba(255, 107, 53, 0.1);
    --shadow-orange-dark: rgba(255, 107, 53, 0.4);
    
    /* Legacy Colors (for backward compatibility) */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c5a;
    --secondary-color: #ff6b35;
    --accent-color: #ff8c5a;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --info-color: #2196f3;
    
    /* Text Colors */
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f0f0f0;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    
    /* Legacy Text Colors (for backward compatibility) */
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #999;
    --text-light: #ccc;
    
    --bg-primary: #fff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #2c3e50;
    --bg-darker: #1a252f;
    
    --border-color: #e9ecef;
    --border-light: #f1f3f4;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    --transition: all 0.3s ease;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    min-height: 44px;
}

.btn-primary {
    background: #f8f9fa !important;
    color: #666 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: none !important;
}

.btn-primary:hover {
    background: #e9ecef !important;
    color: #555 !important;
    transform: none !important;
    box-shadow: none !important;
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 52px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    min-height: 36px;
}

.btn i {
    margin-right: 8px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* =====================================================
   TOP BANNER
   ===================================================== */

.top-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 1000;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-left i {
    font-size: 24px;
    color: white;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.banner-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.banner-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* =====================================================
   HEADER
   ===================================================== */

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

/* Logo */
.logo-section {
    flex-shrink: 0;
}

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

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.triangle-1 {
    top: 5px;
    left: 10px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--primary-color);
    border-top: 0;
}

.triangle-2 {
    top: 15px;
    left: 20px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--primary-light);
    border-top: 0;
}

.triangle-3 {
    top: 25px;
    left: 30px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--accent-color);
    border-top: 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
   
    border-radius: 8px;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px 16px;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 6px;
}



.nav-link i {
    font-size: 12px;
    transition: var(--transition);
    margin-left: 5px;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #ff6b35;
    padding-left: 25px;
}

.dropdown-link i {
    width: 16px;
    text-align: center;
    color: #666;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-link:hover i {
    color: #ff6b35;
}

/* Language Selector */
.language-selector {
    position: relative;
    flex-shrink: 0;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.lang-current:hover {
    border-color: var(--primary-color);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.lang-option:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-color);
}

.lang-option img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

/* =====================================================
   MOBILE MENU
   ===================================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: var(--transition);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-content {
    width: 300px;
    height: 100%;
    background-color: white;
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    color: var(--text-primary);
    font-weight: 500;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

.mobile-submenu {
    padding-left: 32px;
    margin-top: 10px;
}

.mobile-submenu li {
    margin-bottom: 8px;
}

.mobile-submenu a {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
}

.mobile-language {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.mobile-language h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-primary);
}

.mobile-lang-option.active {
    color: var(--primary-color);
    font-weight: 500;
}

.mobile-lang-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb-nav {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-size: 14px;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-dark);
}

.breadcrumb-link i {
    font-size: 12px;
}

.breadcrumb-text {
    font-size: 14px;
}

.breadcrumb-item.active .breadcrumb-text {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-size: 10px;
}

/* =====================================================
   HERO BANNER
   ===================================================== */

.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(229, 90, 43, 0.8));
}

.banner-text {
    color: white;
    max-width: 600px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.banner-btn {
    font-size: 16px;
    padding: 15px 30px;
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

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

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.banner-prev {
    position: absolute;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.banner-next {
    position: absolute;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.banner-prev:hover,
.banner-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active,
.banner-dot:hover {
    background-color: white;
    transform: scale(1.2);
}

/* =====================================================
   STATISTICS SECTION
   ===================================================== */

.stats-section {
    padding: 60px 0;
    background-color: var(--bg-primary);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

/* =====================================================
   SECTIONS
   ===================================================== */

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

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* =====================================================
   PRODUCTS SECTION
   ===================================================== */

.featured-products {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.product-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-title a {
    color: var(--text-primary);
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.product-spec:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-btn {
    font-size: 14px;
    padding: 10px 20px;
}

/* =====================================================
   SOLUTIONS SECTION
   ===================================================== */

.solutions-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

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

.solution-card {
    text-align: center;
    padding: 40px 30px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.solution-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* =====================================================
   NEWS SECTION
   ===================================================== */

.latest-news {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

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

.news-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-category {
    color: var(--primary-color);
    font-weight: 500;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-title a {
    color: var(--text-primary);
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.news-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 14px;
}


/* =====================================================
   PRODUCTS PAGE
   ===================================================== */

.products-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-filters {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.filters-row {
    display: flex;
    align-items: end;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

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

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    background: white;
    transition: var(--transition);
}

.filter-select:focus:not(:focus-visible) {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.filter-select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-box {
    display: flex;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-btn {
    padding: 12px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.results-count {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    /* Fallback for browsers that don't support aspect-ratio */
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio */
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.new {
    background: var(--success-color);
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

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

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
}

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

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

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
}

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

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.no-products-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
   
}

.pagination-btn {
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.pagination-number {
    padding: 10px 15px;
    background: var(--bg-light);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    min-width: 45px;
    text-align: center;
}

.pagination-number:hover {
    background: var(--primary-color);
    color: white;
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
}

/* =====================================================
   FOOTER
   ===================================================== */

.main-footer {
   
    color: white;
 
}

/* Footer CTA Section */
.footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.footer-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-cta .cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-cta .cta-actions .btn {
    min-width: 200px;
}

.footer-cta .cta-actions .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

/* Footer Contact Banner */
.footer-contact-banner {
    padding: 5px 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
    height: 80px;
    border-radius: var(--border-radius);
}

.footer-contact-banner .contact-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.footer-contact-banner .contact-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact-banner .contact-banner-left i {
    font-size: 32px;
    color: var(--text-white);
}

.footer-contact-banner .contact-banner-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-banner .contact-banner-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
}

.footer-contact-banner .contact-banner-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    color: var(--text-white);
}

.footer-contact-banner .contact-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-white);
    color: var(--primary-orange);
    border: 2px solid var(--bg-white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.footer-contact-banner .contact-banner-btn:hover {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.footer-top {
    background-color: var(--bg-dark);
    
    max-width: 1225px;
    margin: 0 auto;
    position:relative;
    height: 100px;
    
}

.footer-contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1225px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

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

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.contact-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-main {
    padding: 60px 0 40px;
    background: #1a252f;
    margin-top: -100px;
    
}

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

.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 100px;
    height: 100px;
}

.footer-logo .logo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.footer-logo .triangle-1 {
    top: 4px;
    left: 8px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--primary-color);
    border-top: 0;
}

.footer-logo .triangle-2 {
    top: 12px;
    left: 16px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 16px solid var(--primary-light);
    border-top: 0;
}

.footer-logo .triangle-3 {
    top: 20px;
    left: 24px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--accent-color);
    border-top: 0;
}

.footer-logo .logo-text {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
}

.company-slogan {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

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

.social-link {
    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: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.address-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.address-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    background-color: #2c3e50;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-error { color: var(--error-color) !important; }
.text-muted { color: var(--text-muted) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-white { background-color: white !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

/* Force button style override */
.products-section .btn-primary,
.best-sellers-section .btn-primary,
.section .btn-primary {
    background: #f8f9fa !important;
    color: #666 !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: none !important;
    background-image: none !important;
    background-color: #f8f9fa !important;
}

.products-section .btn-primary:hover,
.best-sellers-section .btn-primary:hover,
.section .btn-primary:hover {
    background: #e9ecef !important;
    color: #555 !important;
    transform: none !important;
    box-shadow: none !important;
    background-image: none !important;
    background-color: #e9ecef !important;
}

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }
.p-5 { padding: 3rem !important; }

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* =====================================================
   LOADING STATES
   ===================================================== */

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* =====================================================
   PAGINATION STYLES (NEW DESIGN)
   ===================================================== */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: white;
    color: #333;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 60px;
    height: 40px;
}

.pagination-btn:hover {
    background: #f5f5f5;
    border-color: #007bff;
    color: #007bff;
    text-decoration: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #333;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #f5f5f5;
    border-color: #007bff;
    color: #007bff;
    text-decoration: none;
}

.pagination-number.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-number.active:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 4px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 50px;
        height: 36px;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 2px;
    }
    
    .pagination-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 45px;
        height: 32px;
    }
    
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* =====================================================
   RESPONSIVE FOOTER CONTACT
   ===================================================== */

/* Responsive Navigation Menu */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 6px;
    }
    
    .nav-link {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .nav-link i {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 2px;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .nav-link i {
        font-size: 9px;
    }
}

/* Mobile styles for footer contact bar */
@media (max-width: 768px) {
    .footer-contact-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .contact-item {
        flex: none;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .contact-divider {
        display: none;
    }
    
    .footer-contact-banner .contact-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-contact-banner .contact-banner-left {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-contact-bar {
        gap: 15px;
        padding: 15px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact-info h4 {
        font-size: 14px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
    
    .footer-contact-banner {
        height: auto;
        padding: 15px 0;
    }
    
    .footer-contact-banner .contact-banner-title {
        font-size: 1.2rem;
    }
    
    .footer-contact-banner .contact-banner-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-contact-banner .contact-banner-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .btn {
        border: 1px solid #000;
        background: none !important;
        color: #000 !important;
    }
}

/* =====================================================
   MOBILE MENU TOGGLE - DESKTOP HIDDEN
   ===================================================== */

/* Hide mobile menu toggle on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}
