@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Outfit;
}
body {
    background: #dadada;
}
a {
    text-decoration: none;
    color: inherit;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #131921;
    padding: 10px 20px;
    color: #fff;
}
.nav-country{
    display: flex;
    align-items: end;
    margin-left: 15px;
    font-size: 13px;
    color: #c4c4c4;
}
.nav-country h1{
    color: #fff;
    font-size: 14px;
}
.nav-search{
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    color: gray;
    max-width: 1000px;
    border-radius: 4px;
    margin-left: 15px;
}
.nav-search-gategory{
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 5px;
    background: #e5e5e5;
    border-radius: 4px 0 0 4px;
}
.nav-search-input{
    border: none;
    outline: none;
    padding-left: 20px;
    width: 100%;
}
.nav-search-icon{
    max-width: 41px;
    padding: 8px;
    background: #ffd64f;
    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: 0px 15px;
}
.nav-bottom{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    background: #232f3e;
    color: #fff;
    font-size: 15px;
}
.nav-bottom div{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.header-slider ul{
    display: flex;
    overflow: hidden;
}
.header-img{
    max-width: 100%;
    mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
}
.header-slider a{
    position: absolute;
    top: 20%;
    z-index: 1;
    padding: 5vh 1vw;
    background: #ffffff4f;
    color: #0000007b;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
}
.control_next{
    right: 0;
}
.box-row{
    display: flex;
    flex-wrap:wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin: 20px 30px;
}
.box-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    max-width: 24%;
    min-height: 200px;
    z-index: 1;
}
.box-col a{
    font-size: 13px;
    color: #009999;
    font-weight: 500;
}
.header-box{
    margin-top: -20vw;
}
.products-slider .products{
    display: flex;
    overflow-x: auto;
    gap: 0;
    margin-top: 10px;
}
.products-slider .products img{
    max-width: 200px;
    max-height: 200;
}
.products-slider .products::-webkit-scrollbar{
    display: none;
}
.products-slider-with-price{
    background: #fff;
    margin: 0 30px;
    padding: 20px;
    margin-bottom: 15px;
}
.products-slider-with-price .products{
    display: flex;
    overflow: 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;
}
.product-card img{
    width: 110px;
    margin: 0 50px;
}
.product-offer p{
    background: #be0b3b;
    color: #fff;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 8px 0;
    font-size: 13px;
}
.product-offer span{
    color: #be0b3b;
    font-weight: 500;
    font-family: 12px;
}
.product-price{
    color: gray;
    font-family: 13px;
}
.product-card h4{
    color: #525252;
    font-size: 15px;
    font-weight: 400;
}

.product-section {
    background: #fff;
    padding: 20px;
    margin: 20px;
}

.product-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.slider-wrapper {
    position: relative;
}
.product-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 180px;
    height: 220px;
    background: #f5f5f5;
    border-radius: 6px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.products-slider-with-price {
    background: #fff;
    padding: 20px;
    margin: 20px;
}

.products-slider-with-price h2 {
    margin-bottom: 15px;
}
.products {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.products::-webkit-scrollbar {
    display: none;
}
.product-card {
    min-width: 200px;   
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    flex-shrink: 0;
    cursor: pointer;
}
.product-img-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;   
}

.product-offer {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.product-offer p {
    background: red;
    color: #fff;
    padding: 2px 5px;
    font-size: 12px;
}

.product-offer span {
    color: red;
    font-size: 12px;
}

.product-price {
    font-size: 14px;
    margin: 5px 0;
}

.product-price span {
    font-weight: bold;
}
.product-card h4 {
    font-size: 14px;
    font-weight: normal;
}
.footer {
    background: #232f3e;
    color: #fff;
    font-family: Arial, sans-serif;
}
.back-top {
    background: #37475a;
    text-align: center;
    padding: 14px;
    cursor: pointer;
    font-size: 14px;
}
.footer-links {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    border-bottom: 1px solid #3a4553;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    margin: 10px;
    min-width: 200px;
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
    margin: 5px 0;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px;
}

.footer-bottom img {
    width: 100px;
    margin-bottom: 10px;
}

.footer-options {
  display: flex;
  align-items: center;
  gap: 10px;
   display: flex;
  align-items: center;
  justify-content: center;  /* ← yeh add karo */
  gap: 10px;
}

.footer-options button {
  width: 120px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  border: 1px solid #888;
  border-radius: 4px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.footer-options button img {
  width: 18px;
  height: 13px;
  object-fit: cover;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* flag */

.country-btn {
    display: inline-flex;   /* IMPORTANT */
    align-items: center;
    gap: 5px;               /* spacing control */
    background: transparent;
    border: 1px solid #848688;
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    white-space: nowrap;    /* text break nahi hoga */
}

.country-btn img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    display: block;         /* extra space hata deta hai */
}

.footer-extra {
    background: #131a22;
    color: #ddd;
    padding: 30px 20px;
}

/* Services grid */
.footer-services {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    text-align: left;
}

.service h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 5px;
}

.service p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.4;
}

/* Policies */
.footer-policies {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
}

.footer-policies a {
    color: #ddd;
    margin: 0 10px;
    text-decoration: none;
}

.footer-policies a:hover {
    text-decoration: underline;
}

.footer-policies p {
    margin-top: 8px;
    color: #999;
}
@media (max-width: 900px) {
    .footer-services {
        grid-template-columns: repeat(2, 1fr);
    }
}