@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}

body {
    background-color: #faf7f6;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background: #eae0dc;
}

html::-webkit-scrollbar-thumb {
    background: #b58d7e;
}

section {
    padding: 3rem 9%;
}

::selection {
    background-color: #e1cec7;
    color: #31231e;
}

.heading {
    background: #e1cec7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin: 2%;
    border-radius: 3rem;
}

.heading h3 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #5e473e;
}

.heading p {
    font-size: 2rem;
    color: #31231e;
}

.heading p a {
    color: #5e473e;
}

.heading p a:hover {
    color: #845f51;
}

.title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3rem;
    border-bottom: 0.1rem solid #5e473e;
    padding-bottom: 1.5rem;
}

.title span {
    font-size: 2.5rem;
    color: #5e473e;
}

.title a {
    font-size: 1.5rem;
    color: #b58d7e;
}

.title a:hover {
    transform: translateX(-3px);
    color: #9e7464;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #b58d7e, #845f51);
    color: #faf7f6;
    cursor: pointer;
    border-radius: 1rem;
}

.btn:hover {
    letter-spacing: 2px;
    background: linear-gradient(135deg, #945f51, #b58d7e);
}

/* Modal oynani markazga joylashtirish */
.modal {
    display: none;
    /* Dastlab yashirin */
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* O'rtaga joylash */
    width: 90%;
    /* Mobil qurilmalar uchun kenglik */
    max-width: 500px;
    /* Katta ekranda maksimum kenglik */
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Modal kontentni moslashtirish */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    /* Kompyuter ekrani uchun cheklov */
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Yopish tugmasi */
.close {
    color: red;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* Form elementlarini to'g'ri joylashtirish */
.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Yuborish tugmasi */
.modal-content button {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.modal-content button:hover {
    background: #218838;
}

/* 📌 Mobil versiya (Responsive) */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        /* Kichik ekranda moslashish */
        padding: 15px;
    }

    .modal-content h3 {
        font-size: 18px;
    }

    .modal-content input,
    .modal-content textarea {
        font-size: 14px;
        padding: 10px;
    }

    .modal-content button {
        font-size: 14px;
        padding: 10px;
    }

    .close {
        font-size: 24px;
    }
}


/* header section start */


.header {
    padding: 1rem 5%;
    height: 100px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 0 0 1rem 1rem;

}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo-img {
    width: 250px;
    /* Logotip kengligini kamaytiring */
    /* height: 250px; */
    /* Proporsiyani saqlash uchun */
}

.header .search-form {
    height: 5rem;
    width: 50rem;
    border-radius: .75rem;
    background-color: transparent;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f0e8e4;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid #caab9f;

}

.header .search-form input {
    height: 100%;
    width: 100%;
    padding: 0 1.2rem;
    font-size: 1.6rem;
    color: #5e473e;
    text-transform: none;
    background: transparent;
}

.header .search-form input ::placeholder {
    color: #5e473e;
}

.header .search-form label {
    font-size: 2.2rem;
    padding-right: 1.7rem;
    cursor: pointer;
    color: #5e473e;
}

.header .icons {
    display: flex;
    align-items: center;
}

.header .icons div {
    margin-left: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: #5e473e;
}

.header .icons div:hover {
    color: #9e7464;
}

#search-btn {
    display: none;
}



/* header section end */



@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 0;
    }
}


#closer {
    position: fixed;
    top: 5rem;
    right: 4rem;
    font-size: 5rem;
    cursor: pointer;
    z-index: 10000;
    color: #5e473e;
    -webkit-animation: rotate .4s linear .4s backwards;
    animation: rotate .4s linear .4s backwards;
    display: none;
}

#closer:hover {
    color: #9e7464;
}


/* navbar start */

.navbar {
    position: fixed;
    top: 1.5%;
    bottom: 1.5%;
    right: -101%;
    /* right: 0; */
    z-index: 1000;
    width: 35rem;
    height: 70rem;
    background: #f0e8e4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 2%;
    border-radius: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

.navbar.active {
    right: 0;
    -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    -webkit-transition: .4s linear;
    transition: .4s linear;
}

.navbar a {
    margin: 1rem 0;
    font-size: 2.5rem;
    color: #5e473e;
}

.navbar a:hover {
    color: #9e7464;
}

/* navbar end */

/* Icon style*/

.social-links {
    margin-top: 3rem;
    display: flex;
    gap: 30px;
}

.social-links a {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: white;
}

/* Telegram: ko‘k rang */
.social-links a.telegram {
    background-color: #0088cc;
}

.social-links a.telegram:hover {
    background-color: #0077b6;
    transform: scale(1.15);
}

/* Instagram: gradient */
.social-links a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links a.instagram:hover {
    transform: scale(1.15);
}




/* shopping cart start */

.shopping-cart {
    position: fixed;
    top: 1.5%;
    bottom: 1.5%;
    right: -101%;
    z-index: 1000;
    width: 35rem;
    /* height: 100vh; */
    background: #f0e8e4;
    padding: 2rem;
    padding-top: 8rem;
    overflow-y: scroll;
    margin: 2%;
    border-radius: 3rem;
}

.shopping-cart.active {
    right: 0;
    -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    -webkit-transition: .4s linear;
    transition: .4s linear;
}

.shopping-cart::-webkit-scrollbar {
    width: 0;
}

.shopping-cart::-webkit-scrollbar-track {
    background: #eae0dc;
}

.shopping-cart::-webkit-scrollbar-thumb {
    background: #b58d7e;
}

.shopping-cart .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    padding: .75rem;
    background-color: #faf7f6;
    border-radius: 1rem;
}

.shopping-cart .box .close-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 2rem;
    color: #5e473e;
    cursor: pointer;
}

.shopping-cart .box .close-icon:hover {
    color: #9e7464;
}

.shopping-cart .box img {
    border-radius: .65rem;
    height: 8rem;
}

.shopping-cart .box .content h3 {
    color: #5e473e;
    font-size: 1.8rem;
    padding-bottom: .5rem;
}

.shopping-cart .box .content span {
    font-size: 1.5rem;
    color: #b58d7e;
}

.shopping-cart .box .content span.multiply {
    margin: 0 1rem;
}

.shopping-cart .total {
    text-align: center;
    font-size: 2rem;
    padding: 1rem 0;
    color: #845f51;
}

.shopping-cart .total span {
    color: #5e473e;
}

.shopping-cart .btn {
    width: 100%;
    text-align: center;
}

/* shopping cart end */


/* login form start */

.login-form {
    position: fixed;
    top: 1.5%;
    bottom: 1.5%;
    right: -101%;
    z-index: 1000;
    width: 35rem;
    /* height: 100vh; */
    background: #f0e8e4;
    padding: 2rem;
    padding-top: 8rem;
    margin: 2%;
    border-radius: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.login-form.active {
    right: 0;
    -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    -webkit-transition: .4s linear;
    transition: .4s linear;
}

.login-form form {
    padding: 1.7rem;
    border: 0.1rem solid #caab9f;
    border-radius: 2rem;
}

.login-form form h3 {
    font-size: 2.2rem;
    padding-bottom: 1rem;
    color: #5e473e;
}

.login-form form .box {
    width: 100%;
    text-transform: none;
    font-size: 1.5rem;
    color: #5e473e;
    padding: 1rem 1.2rem;
    border: 0.1rem solid #caab9f;
    margin: .7rem 0;
    border-radius: .75rem;
    background: transparent;
}

.login-form form .box::placeholder {
    color: #845f51;
}

.login-form form .remember {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .5rem;
}

.login-form form .remember label {
    padding: 1rem 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: #b58d7e;
}

.login-form form .btn {
    width: 100;
    margin: 1rem 0;
    text-align: center;
}

.login-form form p {
    padding-top: 1rem;
    font-size: 1.4rem;
    color: #b58d7e;
}

.login-form form p a {
    color: #5e473e;
}

.login-form form p a:hover {
    text-decoration: underline;
}

/* login form end */

@-webkit-keyframes fadeOut {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }
}

@-webkit-keyframes fadeLeft {
    0% {
        -webkit-transform: translateX(-5rem);
        transform: translateX(-5rem);
        opacity: 0;
    }
}

@keyframes fadeLeft {
    0% {
        -webkit-transform: translateX(-5rem);
        transform: translateX(-5rem);
        opacity: 0;
    }
}


/* home page start */

.home {
    position: relative;
    margin: 2%;
    border-radius: 3rem;
    background-color: #f0e8e4;
}

.home .slides-container .slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
    display: none;
    transition: opacity 1s ease-in-out;
}

.home .slides-container .slide.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
}

.home .slides-container .slide .content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    -webkit-animation: fadeLeft .4s linear .4s backwards;
    animation: fadeLeft .4s linear .4s backwards;
}

.home .slides-container .slide .content span {
    font-size: 3.5rem;
    color: #df243d;
    font-weight: bold;
}

.home .slides-container .slide .content h3 {
    font-size: 6rem;
    color: #5e473e;
}

.home .slides-container .slide .content p {
    text-transform: none;
    font-size: 1.6rem;
    /* biroz kattalashtirildi */
    color: #5a3e36;
    /* chuqurroq va ko‘zga yoqimli rang */
    padding: 1rem 0;
    /* yuqori va pastdan ko‘proq bo‘sh joy */
    line-height: 1.8;
    /* matnlar orasidagi oraliqni yaxshilaydi */
    font-weight: 400;
    /* o‘rtacha qalinlik */
    letter-spacing: 0.3px;
    /* harflar orasida ozgina joy */
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.home .slides-container .slide .image {
    flex: 1 1 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px;
    overflow: hidden;
    background-color: #f0e8e4;
    border-radius: 2rem;
}

.home .slides-container .slide .image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    /* Yoki cover agar rasm konteynerni to‘ldirishi kerak bo‘lsa */
    -webkit-animation: fadeOut .4s linear;
    animation: fadeOut .4s linear;
    background-color: transparent;
}

.home #slide-next,
.home #slide-prev {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 3rem;
    text-align: center;
    color: #845f51;
    background: #e1cec7;
    cursor: pointer;
    border-radius: 50%;
}

.home #slide-next:hover,
.home #slide-prev:hover {
    background: #845f51;
    color: #e1cec7;
}

.home #slide-next {
    right: 2rem;
}

.home #slide-prev {
    left: 2rem;
}

/* Clients section*/

.clients {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
}

.clients h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.client-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-track {
    display: flex;
    width: max-content;
    animation: scrollClients 20s linear infinite;
}

.client {
    flex: 0 0 auto;
    margin: 0 40px;
}

.client img {
    height: 60px;
    object-fit: contain;
    display: block;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* new*/
.clients-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.clients-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.client-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.client-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.client-info {
  padding: 12px;
  font-size: 14px;
  color: #444;
}

.client-slider {
  position: relative;
}

.client-slider img {
  display: none;
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
}

.client-slider img.active {
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
}

.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

/*modal client*/

.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.img-modal img {
  max-width: 90%;
  max-height: 90%;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.slide-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 12px;
  z-index: 5;
}

.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.img-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.modal-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  user-select: none;
}

.modal-btn.prev { left: 30px; }
.modal-btn.next { right: 30px; }

.modal-counter {
  position: absolute;
  bottom: 20px;
  color: #fff;
  font-size: 14px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}



/*new*/
/* ===============================
   X O R I K A   S E C T I O N
   Premium Client Interiors
================================ */
/* SECTION */
.xorika-section {
    padding: 80px 20px;
    background: #000;
      font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

.xorika-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* CONTAINER */
.xorika-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.xorika-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}

.xorika-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2)
    ); */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.overlay p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 14px;
}

.overlay .btn {
    align-self: flex-start;
    padding: 10px 18px;
    background: #c9a25d;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* HOVER */
.xorika-box:hover img {
    transform: scale(1.08);
}

.xorika-box:hover .overlay {
    opacity: 1;
}

/* VIEW MORE */
.view-more {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid #c9a25d;
    color: #c9a25d;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .xorika-section {
        padding: 50px 16px;
    }

    .xorika-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
        color: whitesmoke;
    }

    .xorika-container {
        display: flex;
        flex-direction: column; /* MUHIM */
        gap: 20px;
    }

    .xorika-box {
        aspect-ratio: 3 / 4;
    }

   
}






.showroom-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.showroom-section h2 {
    text-align: center;
    font-size: 3.5em;
    margin-bottom: 40px;
    color: #333;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1rem;
    padding: 1rem;
    max-width: 100%;
}

.masonry-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.masonry-item img,
.masonry-item iframe {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.masonry-item iframe {
    aspect-ratio: 16 / 9;
    height: 300px;
}

.masonry-item .info {
    padding: 0.5rem 1rem;
    font-size: 14px;
    color: #fff;
}


.masonry-item:hover {
    transform: scale(1.02);
}

.info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9em;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.masonry-item:hover .info {
    opacity: 1;
}


.fullscreen-video {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.fullscreen-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.catalog-inline {
  margin: 80px 0;
  padding: 40px 20px;
  background: #f7f7f7;
  border-radius: 24px;
}

.catalog-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.catalog-text {
  flex: 1;
}

.catalog-text h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.catalog-text h3 span {
  color: #c49a6c;
}

.catalog-text p {
  font-size: 26px;
  color: #555;
  margin-bottom: 24px;
}

.catalog-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: .3s;
}

.catalog-btn:hover {
  background: #c49a6c;
  transform: translateY(-2px);
}

.catalog-image img {
  max-width: 500px;
  border-radius: 16px;
  
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .catalog-inline {
    margin: 40px 0;
    padding: 24px 16px;
    border-radius: 18px;
  }

  .catalog-box {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .catalog-text h3 {
    font-size: 24px;
  }

  .catalog-text p {
    font-size: 16px;
  }

  .catalog-btn {
    padding: 12px 26px;
    font-size: 14px;
  }

  .catalog-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .catalog-image img {
    width: 100%;
    max-width: 320px;   /* 🔥 MUHIM */
    height: auto;
    border-radius: 14px;
  }
}




/* Responsive */

@media (max-width: 768px) {
    .fullscreen-video {
        padding: 0 10px;
        margin-top: 40px;
    }

    .fullscreen-video iframe {
        border-radius: 8px;
    }
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}


@media (max-width: 600px) {
    .masonry-grid {
        column-count: 2;
    }
}






/* home page end */


/* shop page start */

/* ---- banner ---- */

.banner-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.banner-container .banner {
    height: 35rem;
    overflow: hidden;
    position: relative;
    border-radius: 3rem;
}

.banner-container .banner img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-container .banner:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.banner-container .banner .content {
    position: absolute;
    top: 50%;
    left: 2rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner-container .banner .content span {
    font-size: 1.7rem;
    color: #b57e8a;
}

.banner-container .banner .content h3 {
    padding-top: .5rem;
    font-size: 2.2rem;
    color: #3e4b5e;
}

.banner-container .banner .content .btn {
    padding: .7rem;
}

/* ---- categories ---- */
/* .category .box-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: 1.5rem;
    }

    .category .box-container .box {
        padding: 2rem;
        text-align: center;
        border-radius: 2rem;
        background: #f0e8e4;
    }

    .category .box-container .box:hover {
        box-shadow: rgba(0,0,0, 0.1) 0px 4px 12px;
    }

    .category .box-container .box:hover img {
        transform: translateY(-3px);
    }

    .category .box-container .box img {
        height: 6rem;
        margin-bottom: 1rem;
    }

    .category .box-container .box h3 {
        font-size: 1.7rem;
        color: #5e473e;
    } */


/* ---- product section ---- */

/* .products .box-container {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (minmax(26rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 3rem;
        background-color: #f0e8e4;
    }

    .products .box-container .box {
        position: relative;
        background: #f5eeeb;
        overflow: hidden;
        border-radius: 2rem;
        border: 0.1rem solid #caab9f;
    }

    .products .box-container .box:hover .image img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .products .box-container .box:hover .icons {
        top: 0;
    }

    .products .box-container .box .icons {
        position: absolute;
        top: -100%;
        left: 0;
        height: 30rem;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: .5rem;
        background: rgba(242,242,242, 0.7);
        z-index: 10;
    }

    .products .box-container .box .icons a {
        text-align: center;
        height: 5rem;
        line-height: 5rem;
        width: 5rem;
        background: #e1cec7;
        color: #5e473e;
        border-radius: 50%;
        font-size: 2rem;
        -webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0, 0.1rem);
        box-shadow: 0 0.5rem 1rem rgba(0,0,0, 0.1);
    }

    .products .box-container .box .icons a:hover {
        background: #5e473e;
        color: #e1cec7;
    }

    .products .box-container .box .image {
        height: 30rem;
        width: 100%;

    }

    .products .box-container .box .image img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .products .box-container .box .content {
        padding: 1.5rem 2rem;
    }

    .products .box-container .box .content .price {
        font-size: 1.7rem;
        color: #b58d7e;
    }

    .products .box-container .box .content h3 {
        font-size: 2rem;
        color: #5e473e;
        padding: .5rem 0;
    }

    .products .box-container .box .content .stars {
        font-size: 1.7rem;
    }

    .products .box-container .box .content .stars i {
        color: gold;
    }

    .products .box-container .box .content .stars span {
        color: #b58d7e;
    } */

/* ---- product section ---- */


/* .products {
    padding: 2rem;
}

.products .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.products .title a {
    color: #a06a50;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.products .title a:hover {
    color: #7a4a34;
}

// Grid Layout 
.products .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 3rem;
    background-color: #f0e8e4;
}

/* Product Box 
.products .box-container .box {
    position: relative;
    background: #fff;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 0.1rem solid #d4b5a6;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products .box-container .box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}

 //Icons
.products .box-container .box .icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.products .box-container .box .icons a {
    background: #fff;
    color: #a06a50;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

.products .box-container .box .icons a:hover {
    background: #a06a50;
    color: #fff;
}

/* Image 
.products .box-container .box .image img {
    width: 100%;
    max-width: 200px;
    margin: auto;
    display: block;
}

/* Product Content 
.products .box-container .box .content {
    margin-top: 1rem;
}

.products .box-container .box .content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.products .box-container .box .content .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #a06a50;
    margin-bottom: 0.5rem;
}

/* Stars 
.products .box-container .box .content .stars {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffa500;
    gap: 2px;
}

.products .box-container .box .content .stars i {
    font-size: 1rem;
}

.products .box-container .box .content span {
    font-size: 0.9rem;
    color: #666;
} */



/* shop page end */


/* about page start */

/* ---- about section ---- */

/* .about {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 2rem;
        margin: 2%;
        border-radius: 3rem;
        background-color: #f0e8e4;
    }

    .about .image {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    }

    .about .image img {
        border-radius: 2rem;
        width: 100%;
    }

    .about .content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    }

    .about .content span {
        font-size: 2rem;
        color: #b58d7e;
    }

    .about .content h3{
        font-size: 2.5rem;
        color: #5e473e;
        padding-top: 1rem;
    } 

    .about .content p {
        font-size: 1.4rem;
        color: #b58d7e;
        padding: 1rem 0;
        line-height: 2;
    } */

.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin: 2%;
    padding: 3rem;
    border-radius: 3rem;
    background: linear-gradient(135deg, #f6f1ee, #e8d9d2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about .image {
    flex: 1 1 40rem;
}

.about .image img {
    border-radius: 2rem;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about .content {
    flex: 1 1 40rem;
    padding: 1rem;
}

.about .content span {
    font-size: 4rem;
    font-weight: 600;
    color: #b58d7e;
    letter-spacing: 1px;
}

.about .content h3 {
    font-size: 2.8rem;
    color: #5e473e;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: none;
}

.about .content p {
    font-size: 1.6rem;
    color: #6e5048;
    padding: 1rem 0;
    line-height: 1.8;
}

.about .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #b58d7e, #8d6a5d);
    color: white;
    font-size: 1.4rem;
    border-radius: 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.about .btn:hover {
    background: linear-gradient(to right, #8d6a5d, #b58d7e);
    transform: translateY(-3px);
}


/* ---services section ---- */

.services .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.services .box-container .box {
    padding: 2rem;
    text-align: center;
    background-color: #f0e8e4;
    border-radius: 2rem;
}

.services .box-container .box:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.services .box-container .box:hover img {
    transform: translateY(-3px);
}

.services .box-container .box img {
    font-size: 8rem;
    margin-bottom: 1rem;
}

.services .box-container .box h3 {
    text-transform: none;
    font-size: 2.2rem;
    color: #5e473e;
}

.services .box-container .box p {
    text-transform: none;
    font-size: 1.4rem;
    color: #b58d7e;
    line-height: 2;
    padding: 1rem 0;
}

.services .box-container .box .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ca1038;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 2rem;
    transition: 0.3s ease;
}

.services .box-container .box .btn:hover {
    background-color: #8a6d5b;
    transform: scale(1.05);
}
.map-section {
    width: 100vw;      /* ekran bo‘ylab kenglik */
    margin: 0;         /* default marginni olib tashlash */
    padding: 0;        /* paddingni olib tashlash */
    position: relative; 
    left: 50%;         /* markazlash */
    right: 50%;
    margin-left: -50vw;  /* shift qilish to‘liq ekran */
    margin-right: -50vw;
}

.map-section iframe {
    width: 100%;
    height: 400px;  /* xohlovga qarab o'zgartirish mumkin */
    border: 0;
    display: block;
}


/* about page end */

/*home backround vedio*/
.video-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Video fon */
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Qoraytirish (overlay) */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Kontent */
.video-section .content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: large;
}

.video-section .btn {
  margin-top: 15px;
  padding: 12px 28px;
  background: #c9a45c;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
}


/* team page start */

.team .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 3rem;
    background-color: #f0e8e4;
}

.team .box-container .box {
    position: relative;
    overflow: hidden;
    border: 0.1rem solid #caab9f;
    border-radius: 2rem;
    background: #f5eeeb;
}

.team .box-container .box:hover .image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: transform 0.3s ease-in-out;
}

.team .box-container .box:hover .share {
    left: 0;
}

.team .box-container .box .share {
    width: 7rem;
    height: 47.5rem;
    position: absolute;
    top: 1%;
    left: -8.5rem;
    z-index: 10;
    margin: 2%;
    margin-left: 3.5%;
    border-radius: 1.5rem;
    background: #f0e8e4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .7rem;
}

.team .box-container .box .share a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2.2rem;
    color: #5e473e;
    background: #e1cec7;
    text-align: center;
    border-radius: 50%;
}

.team .box-container .box .share a:hover {
    color: #e1cec7;
    background: #5e473e;
}

.team .box-container .box .image {
    height: 50rem;
    width: 100%;
    overflow: hidden;
}

.team .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team .box-container .box .user {
    padding: 1rem 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    justify-content: space-between;
}

.team .box-container .box .user h3 {
    font-size: 2rem;
    color: #5e473e;
}

.team .box-container .box .user span {
    text-transform: none;
    font-size: 1.5rem;
    color: #b58d7e;
}

/* team page end */


/* blog page start */

.blog .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    border-radius: 3rem;
    background-color: #f0e8e4;
}

.blog .box-container .box:hover .image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.blog .box-container .box .image {
    height: 25rem;
    width: 100%;
    overflow: hidden;
    border-radius: 2rem 2rem 0 0;
}

.blog .box-container .box .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog .box-container .box .content {
    padding: 1.5rem 2rem;
}

.blog .box-container .box .content h3 {
    font-size: 2rem;
    color: #5e473e;
}

.blog .box-container .box .content p {
    font-size: 1.4rem;
    color: #b58d7e;
    line-height: 2;
    padding: 1rem 0;
}

.blog .box-container .box .content .icons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 0.1rem solid #5e473e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog .box-container .box .content .icons a {
    font-size: 1.4rem;
    color: #b58d7e;
}

.blog .box-container .box .content .icons a:hover {
    color: #9e7464;
}

.blog .box-container .box .content .icons a i {
    padding-right: .5rem;
    color: #5e473e;
}

/* blog page end */




/* contact page start */

.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.contact-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.column {
    flex: 1 1 45%;
    max-width: 45%;
}

.column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #34495e;
}


.video {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .column {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .map,
    .video {
        height: 300px;
    }
}

.fullwidth-image-section {
    width: 100%;
    margin-top: 40px;
}

.fullwidth-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 25px;
}


/* contact page end */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
    max-width: 1300px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-block,
.social-block {
    flex: 1 1 400px;
    padding: 20px;
}

.contact-block h3,
.social-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-block ul {
    list-style: none;
}

.contact-block li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #333;
}

.contact-block a {
    color: #007bff;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.social-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #555;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 18px;
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.telegram:hover {
    background: #0071a9;
}

.social-btn.instagram {
    background: #e1306c;
}

.social-btn.instagram:hover {
    background: #c13584;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .contact-block,
    .social-block {
        width: 100%;
        padding: 10px 0;
    }

    .social-block {
        align-items: center;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.icon-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #555;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-btn.telegram {
    background: #0088cc;
    color: #fff;
}

.icon-btn.telegram:hover {
    background: #0071a9;
}

.icon-btn.instagram {
    background: #e1306c;
    color: #fff;

}

.icon-btn.instagram:hover {
    background: #c13584;
}









/* footer start */

.footer {
    margin: 2%;
    border-radius: 3rem;
    background: #f0e8e4;
}

.footer .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    text-transform: none;
    font-size: 2.2rem;
    color: #5e473e;
    padding: 1rem 0;
}

.footer .box-container .box p {
    font-size: 1.6rem;
    color: #b58d7e;
    padding: 1rem;
}

.footer .box-container .box a {
    font-size: 1.4rem;
    color: #5e473e;
    padding: 1rem 0;
    display: block;
    display: flex;
    align-items: center;
}

.footer .box-container .box a:hover {
    color: #9e7464;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .box-container .box a i {
    padding-right: .5rem;
    color: #5e473e;
    font-size: 1.7rem;
}

.footer .box-container .box form input[type="email"] {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    color: #5e473e;
    text-transform: none;
    margin: .7rem 0;
    background: transparent;
    border-radius: .75rem;
    border: 0.1rem solid #caab9f;
}

.footer .box-container .box form input[type="email"]::placeholder {
    color: #5e473e;
}

.credit {
    background-color: #f0e8e4;
    padding: 15px 20px;
    font-size: 14px;
    color: #5e473e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visitor-counter img {
    width: 25px;
    /* Kichik va chiroyli */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.visitor-counter img:hover {
    opacity: 1;
    transform: scale(1.05);
}



/* footer end */


/* responsive start */

@media screen and (max-width: 991px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 2rem;
    }

    section {
        padding: 3rem 2rem;
    }

    .home {
        padding: 3rem 2rem;
    }

    .home #slide-next,
    .home #slide-prev {
        top: 95%;
    }

    .home #slide-prev {
        left: auto;
        right: 8rem;
    }
}

@media screen and (max-width: 768px) {
    #search-btn {
        display: inline-block;
    }

    .header .search-form {
        position: absolute;
        height: 8rem;
        top: -90%;
        left: 2%;
        right: 2.2%;
        /* width: 100%; */
        border-radius: 3rem 3rem 0.75rem 0.75rem;
        background: #ece0dc;
    }

    .header .search-form.active {
        top: 110%;
    }

}



@media screen and (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .home .slides-container .slide .content h3 {
        font-size: 4rem;
    }

    .heading {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        gap: 1rem;
    }

}


/* responsive end */