@import url('https://fonts.googleapis.com/css2?family=Honk&family=Outfit:wght@300;400;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: #dadada;
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    background: #131921;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
}

.nav-country {
    display: flex;
    align-items: center;
    margin-left: 15px;
    font-size: 13px;
    color: #c4c4c4;
    gap: 5px;
}

.nav-country h1 {
    color: #fff;
    font-size: 14px;
}

.nav-search {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 15px;
    border-radius: 4px;
    max-width: 1000px;
    color: gray;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.nav-search-gategory {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 5px;
    background: #e5e5e5;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.nav-search-input {
    border: none;
    outline: none;
    padding-left: 20px;
    width: 100%;
}

.nav-search-icon {
    max-width: 41px;
    padding: 8px;
    background: #febd69;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -ms-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
}

.nav-language {
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 600;
    margin-left: 15px;
}

.nav-text {
    margin-left: 15px;
}

.nav-text p {
    font-size: 10px;
}

.nav-text h1 {
    font-size: 14px;
}

.nav-cart {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-bottom {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    background: #232f3e;
    gap: 20px;
    color: #fff;
    font-size: 15px;
}

.nav-bottom div {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 600;
}

.nav-bottom p {
    cursor: pointer;
    font-weight: 600;
}

.header-slider {
    position: relative;
    overflow: hidden;
}

.header-slider ul {
    display: flex;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    width: 600%; /* 6 images * 100% each */
}

.header-img {
    min-width: 100vw;
    width: 100vw;
    height: 450px;
    object-fit: cover;
    object-position: center 20%;
    mask-image: linear-gradient(to bottom, #000000, transparent 100%);
    flex-shrink: 0;
}

.header-slider a {
    position: absolute;
    top: 20%;
    z-index: 1;
    padding: 5vh 1vw;
    background: #ffffff4f;
    color: #0000007b;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
}

.control-next {
    right: 0;
}

.box-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
    margin: 20px 30px;
}

.box-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    max-width: 24%;
    min-height: 200px;
}

.box-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f1111;
}

.box-col img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.box-col a {
    font-size: 14px;
    color: #007185;
    font-weight: 600;
    transition: color 0.3s;
}

.box-col a:hover {
    color: #c7511f;
}

/* Hover effect for all box columns */
.box-col {
    transition: all 0.3s ease;
    cursor: pointer;
}

.box-col:hover {
    border: 2px solid #febd69;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.box-col:hover a {
    background: #febd69;
    color: #0f1111;
    padding: 8px 16px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
}

.box-col:hover a:hover {
    background: #f3a847;
}

.header-box {
    margin-top: -180px;
    position: relative;
    z-index: 2;
}

.products-slider {
    background: #fff;
    margin: 0 30px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.products-slider h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 10px;
}

.products-slider .products {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 10px;
}

.products-slider .products img {
    max-width: 200px;
    cursor: pointer;
    max-height: 200px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.products-slider .products img:hover {
    transform: scale(1.05);
}

.products-slider .products::-webkit-scrollbar {
    display: none;
}

.products-slider-with-price {
    background: #fff;
    margin: 0 30px;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.products-slider-with-price h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 10px;
}

.products-slider-with-price .products {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 10px;
}

.products-slider-with-price .products::-webkit-scrollbar {
    display: none;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-width: 210px;
    background: #fbfbfb;
    border-radius: 4px;
    padding: 10px;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 110px;
    margin: 0 50px;
}

.product-offer p {
    background: #b12704;
    color: #fff;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 13px;
    margin: 8px 0;
    font-weight: 600;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.product-offer span {
    color: #b12704;
    font-weight: 500;
    font-size: 12px;
}

.product-offer h1 {
    font-size: 14px;
    font-weight: 600;
    margin: 8px 0;
}

.product-price {
    color: #565959;
    font-size: 14px;
    font-weight: 600;
}

.product-price span {
    font-size: 16px;
    color: #0f1111;
    font-weight: 700;
}

.product-card h4 {
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0;
    color: #0f1111;
    line-height: 1.4;
}

/* Chatbot Floating Button */
.chatbot-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #232f3e, #37475a);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.chatbot-btn:hover {
    background: linear-gradient(135deg, #37475a, #232f3e);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.chatbot-btn svg {
    width: 20px;
    height: 20px;
}

.chatbot-btn span {
    white-space: nowrap;
}

/* Enhanced Footer */
footer {
    background: #131921;
    color: #fff;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    margin: 5px 0;
    color: #c4c4c4;
    font-size: 14px;
}

.footer-credit {
    font-size: 16px;
    font-weight: 600;
}

.footer-credit span {
    color: #febd69;
    font-weight: 700;
    font-size: 18px;
}

.footer-hackathon {
    font-size: 11px !important;
    color: #888 !important;
    opacity: 0.7;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .box-row {
        flex-direction: column;
        margin: 20px 15px;
    }
    
    .box-col {
        max-width: 100%;
    }
    
    .products-slider,
    .products-slider-with-price {
        margin: 0 15px;
    }
    
    .chatbot-btn span {
        display: none;
    }
    
    .chatbot-btn {
        width: 56px;
        height: 56px;
        padding: 16px;
        border-radius: 50%;
        justify-content: center;
    }
    
    nav {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .nav-search {
        order: 3;
        flex-basis: 100%;
        margin: 10px 0 0 0;
    }
}