/* General Resets */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
.container { max-width: 1700px; margin: 0 auto; padding: 0 20px; }

/* Top Bar Styling */
.top-bar {
    background: linear-gradient(to right, #13618C, #297B35);
    color: white;
    padding: 15px 0;
    font-size: 13px;
}

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

.modes {
    display: flex;
    gap: 10px;
    background-color: rgba(16, 24, 40, 0.2);
    padding: 5px;
    border-radius: 6px;
}

.modes button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    background-color: rgba(16, 24, 40, 0.2);
}

.modes button.active {
    background-color: #FCFCFD;
    color: #1D2939;
}

.modes button:hover.active {
    background-color: #e6e3e3;
}

.modes button:not(.active) {
    background-color: transparent;
    color: #E4E7EC;
}

.modes button:hover:not(.active) {
    background-color: rgba(16, 24, 40, 0.2);
}

.modes button img {
    width: 16px;
    height: 16px;
}

.contact-info {
    color: #FCFCFD;
    font-size: 13px;
    white-space: nowrap;
}

.contact-info a {
    color: #FCFCFD;
    text-decoration: none;
}

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

/* Header Styling */
header { padding: 15px 0; border-bottom: 1px solid #eee; background-color: #fff; }

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.search-bar { 
    flex-grow: 1; 
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: #f9f9f9;
}

.search-bar img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.search-bar input { 
    flex-grow: 1;
    border: none;
    background: none;
    padding: 0;
    font-size: 13px;
    outline: none;
}

.search-bar input::placeholder {
    color: #999;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cart-icon {
    position: relative;
}

.cart-icon img {
    width: 24px;
    height: 24px;
}

.cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #d32f2f;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.header-icons img {
    width: 24px;
    height: 24px;
}

/* Footer Styling */
footer {
    background-color: #101828;
    color: #ffffff;
    padding: 60px 0 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    gap: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 0 0 auto;
}

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

.footer-links {
    flex: 0 0 auto;
}

.footer-links:first-of-type {
    margin-left: auto;
}

.footer-links + .footer-links {
    margin-left: 20px;
}

.footer-brand img {
    width: 150px;
    height: auto;
    margin-bottom: 0;
}

.footer-brand h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.footer-brand > p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    /* margin-top: 5px; */
}

.contact-item.email {
    margin-top: 20px;
}

.contact-item img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    color: #ccc;
    font-size: 13px;
}

.footer-links-section {
    display: flex;
    gap: 40px;
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #F9FAFB;
}

.footer-links .divider {
    width: auto;
    height: 1px;
    background-color: #344054;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: #D0D5DD;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links li:hover {
    color: #ccc;
}

.footer-bottom-part {
    background-color: #0C1017;
}

.footer-divider {
    height: 1px;
    background-color: #1a2433;
    margin-bottom: 30px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    /* margin-bottom: 30px; */
    padding-bottom: 30px;
    border-bottom: #0C1017;
}

.footer-links-bottom {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-links-bottom a {
    color: #F9FAFB;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-bottom a::after {
    content: "→";
    opacity: 0.5;
    font-size: 20px;
}

.footer-links-bottom a:hover {
    color: #ccc;
}

.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
}

.payment-methods img {
    height: 28px;
    width: auto;
    background-color: white;
    padding: 4px 6px;
    border-radius: 4px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #D0D5DD;
    align-items: center;
    padding-bottom: 20px;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright img {
    height: 24px;
    width: auto;
    vertical-align: middle;
}

.tulutech {
    color: #D0D5DD;
    text-decoration: none;
}