/* Maintenance Notice Banner */
.maintenance-notice {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 0.5px;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Header */
header {
    background: linear-gradient(
        135deg,
        #f5a623 0%,
        #f5a623 35%,
        white 35%,
        white 65%,
        #f5a623 65%,
        #f5a623 100%
    );
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

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

.logo-img {
    height: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #f5a623;
}

/* Dropdown Menu */
nav ul li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    margin-top: 5px;
    padding-top: 5px;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    text-transform: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: #f5f5f5;
    color: #f5a623;
    padding-left: 25px;
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-icons a {
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none !important;
    background: #f5a623;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    margin-left: 0;
    border-radius: 4px;
    transition: background 0.3s;
}

.mobile-menu-btn:hover {
    background: #e09612;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 10000;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f5a623;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mobile-menu-close:hover {
    background: #e09612;
}

.mobile-nav {
    padding: 80px 30px 30px;
    display: block !important;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block !important;
}

.mobile-nav ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: #f5a623;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 600px;
    background: #f5f5f5;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    padding: 0 20px;
}

.product-box {
    text-align: center;
    color: white;
}

.product-box img {
    max-width: 250px;
    height: auto;
}

.product-name {
    font-size: 48px;
    font-weight: bold;
    margin-top: 20px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 32px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.slider-nav:hover {
    background: rgba(245, 166, 35, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.prev::before {
    content: "‹";
    display: block;
    margin-top: -2px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav.next::before {
    content: "›";
    display: block;
    margin-top: -2px;
}
