* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
}

.top-bar {
    background-color: #0b4c1a; 
    color: #ffffff;
    height: 50px;
    overflow: hidden; 
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    width: 400%; 
    height: 100%;
    animation: gulcanCiftlikSlider 24s ease-in-out infinite;
}

.slide-item {
    width: 25%; 
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

@keyframes gulcanCiftlikSlider {
    0%, 22% { transform: translateX(0); }         
    25%, 47% { transform: translateX(-25%); }   
    50%, 72% { transform: translateX(-50%); }    
    75%, 98% { transform: translateX(-75%); } 
    100% { transform: translateX(-75%); } 
}

.main-header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 90px;
    box-shadow: 0 13px 7px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
}

.logo img {
    max-height: 80px; 
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu ul li {
    position: relative;
    padding: 10px 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    font-weight: 700; 
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.nav-menu ul li a:hover {
    color: #0b4c1a;
}

.icon-small {
    font-size: 16px; 
    margin-left: 4px;
    color: #b3b3b3;
    transition: all 0.25s ease;
    display: inline-block;
}

.dropdown:hover .icon-small {
    transform: rotate(180deg);
    color: #0b4c1a;
}

.nav-menu > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0b4c1a; 
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out; 
}

.nav-menu > ul > li:hover > a::after {
    width: 100%; 
}

.nav-menu ul li a.free-shipping {
    color: #e67e22;
}

.campaign-icon {
    font-size: 16px;
    margin-right: 5px;
    animation: leafPulse 2s infinite ease-in-out;
}

@keyframes leafPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
}

.nav-menu > ul > li > a.free-shipping::after {
    background-color: #e67e22; 
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu li {
    padding: 0;
    border: none; 
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #0b4c1a;
}

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

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

.header-icons a {
    color: #333333;
    font-size: 22px; 
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-icons a:hover {
    color: #0b4c1a;
    background-color: #f3f8f4;
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
}
.cart-count {
    position: absolute;
    top: 3px;
    right: 3px;
    background-color: #0b4c1a; 
    color: #ffffff;
    font-size: 9px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid #ffffff; 
    box-shadow: 0 2px 4px rgba(11, 76, 26, 0.15);
}