/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


 @font-face {
            font-family: 'TAPfont';
            src: url('fonts/true.ttf') format('truetype');
        }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'TAPfont', sans-serif;
    transition: all 0.4s ease;;
}


/* ===== Colours ===== */
 :root {
    --body-color: #ffffff;
    --nav-color: #fff;
    --side-nav: #ffffff12;
    --text-color: #18191acf;
    --search-bar: #fffff;
    --search-text: #18191a;
    --nav-color-savat: #09373563;
    --nav-color-savat-text: #fff;
}
body{
    height: 100vh;
    background-color: var(--body-color);
}

body.dark {
    --body-color: #18191A;
    --nav-color: #242526d4;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
    --nav-color-savat: #0b463f96;
    --nav-color-savat-text: #fff;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100;
    box-shadow: 0 15px 30px -20px #0b463f;
}


body.dark nav{
    border: 1px solid #393838;

}

nav .nav-bar {
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a{
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
}

.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}

.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover a::before{
    opacity: 1;
}

.nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}

.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}

.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}

.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}

.searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}

.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}

.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}

.searchBox{
    position: relative;
}

.searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: max-content;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color-savat);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    color: var(--nav-color-savat-text);
    backdrop-filter: blur(10px);
}

.searchToggle.active ~ .search-field{
    bottom: -135px;
    opacity: 1;
    pointer-events: auto;
}

.search-field::before {
    content: '❌';
    position: absolute;
    right: -35px;
    top: 0px;
    /* height: 30px; */
    /* width: 30px; */
    background-color: var(--nav-color-savat);
    transform: rotate(190deg);
    z-index: -1;
    border-radius: 5px;
    font-size: 20px;
}

.search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
}

body.dark .search-field input{
    color: var(--text-color);
}

.search-field i{
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

body.dark .search-field i{
    color: var(--text-color);
}



@media (max-width: 790px) {
   
    nav .nav-bar .sidebarOpen{
        display: block;
    }

   .menu {
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
       backdrop-filter: blur(15px);
        border-right: 0.001px solid #cdcdcd;
        border-radius: 0px 10px 10px 0px;
    }

    nav.active .menu{
        left: -0%;
    }

    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }

    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-toggle .siderbarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }

    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 30px;
    }

    .nav-links li a{
        display: block;
        margin-top: 20px;
    }
}





 .shop h2 {
    font-size: 24px;
    text-align: center;
    color: #fff!important;
    background: #18191a8f;
    padding: 1.5%;
    border-radius: 5px;
}

 
 .mt-footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.mt-footer ul {
    list-style-type: none;
    padding: 0;
}

.mt-footer ul li {
    display: inline;
    margin: 0 15px;
}

.mt-footer ul li a {
    color: white;
    text-decoration: none;
}

.mt-footer ul li a:hover {
    color: #ff6347; /* Hoverda rangni o'zgartirish uchun */
}

.mt-footer p {
    margin-top: 10px;
    font-size: 14px;
}

 
.mt-content {
    margin: 5% auto;
    /* background: url(/media/goldpad.png); */
   background-color: var(--nav-color);
    background-repeat: repeat;
    background-position: center;
    background-size: 300px;
    width: 95%;
    padding: 2%;
    border-radius: 10px;
    backdrop-filter: blur(70px);
    box-shadow: 0 20px 50px -15px #0b463f;
}
        
        .mt-content h1 {
                color: #fff;
    text-align: center;
    background: #18191a8f;
    padding: 0.2%;
    border-radius: 5px;
        }
        
        .lg-p {
padding-left: 1%;
margin-top: 2%;
    color: #ccc;
        }
        .lg-p-b {
                margin-bottom: 2%;
        }
        
    



.container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    flex-wrap: nowrap;
    align-content: center;
    flex-direction: row-reverse;
}
.container__image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
   border-radius: 0;
  width: 450px;
  height: 310px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(9, 55, 53, 0.08), 0px 16px 24px rgba(9, 55, 53, 0.1), 0px 24px 32px rgba(9, 55, 53, 0.14);
  background-image: url("https://live.staticflickr.com/65535/49389103952_ff4b2cf256.jpg");
  background-size: cover;
  transition: ease-in-out 0.3s;
  z-index: 2;
}
.container__image:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: inherit;
    background-position: bottom;
    opacity: 0.18;
    filter: blur(10px) saturate(100%);
    transform: scale(2.8) translate3d(-18%, 0px, 0px);
    transition: ease-in-out 0.4s;
    border-radius: 120px;
    transform-origin: right;
    z-index: 2;
}
.container__image .container__info {
  position: relative;
  line-height: 1.8;
  transition: ease-in-out 0.3s;
  opacity: 0;
}
.container__image .container__location {
  transition-delay: 0.15s;
}
.container__image:hover {
  border-radius: 0;
  width: 450px;
  height: 310px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.04), 0px 2px 6px rgba(9, 55, 53, 0.08), 0px 16px 24px rgba(9, 55, 53, 0.1), 0px 24px 32px rgba(9, 55, 53, 0.14);
}
.container__image:hover:before {
  width: 100%;
  opacity: 0.18;
  filter: blur(10px) saturate(100%);
  transform: scale(2.8) translate3d(-18%, 0px, 0px);
}
.container__image:hover .container__info {
  transform: translate3d(-60%, 0px, 0px);
  opacity: 1;
}

.link {
  border-bottom: 1px solid transparent;
  color: #06C0A8;
  text-decoration: none;
  transition: ease-in 0.13s;
}
.link:hover {
  background-color: #06C0A8;
  color: #ffffff;
}

    @media only screen and (max-width: 600px) {
   .mt-content {
        margin: 20% auto;
    }
    .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row-reverse;
}
    .container__image{
        width: 150px;
        height: 150px;
    }
    .container__image:hover .container__info {
    transform: translate3d(100px, 0px, 0px);
    
}
}
  
  