body {
    margin: 0;
    overflow-x: hidden;
}

@font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'InterTight';
    src: url('/advanced/static/InterTight-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
  }
  
  
*, button, input, select {
    font-family: 'InterTight', sans-serif;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
}

main {
    max-width: 150vh;
    margin: 0 auto;
    padding: 0 8px;
}


header h1 {
    font-size: 1.10rem;
    font-weight: 500;
    line-height: 0.8;
  
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 img {
    width: 150px;
}

.nav-wrapper {
    overflow-x: auto;
    white-space: nowrap;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 10px 10px 0;
}

.nav-left, .nav-right {
    display: flex;
    gap: 15px;
}

.nav-right {
    margin-left: auto;
}

.nav-container a {
    font-size: 0.75rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.532);
    transition: 0.25s;
    font-weight: 400 !important;
    padding-right: 15px;
    text-transform: uppercase;
}

.nav-container a:hover {
    color: black;
    text-decoration: underline;
  
}

.nav-right svg {
    width: 1rem;
    vertical-align: -3px;
}

.taal a {
    color: rgba(0, 0, 0, 0.525);
    font-size: 0.65rem;
    vertical-align: middle;
    text-decoration: none;
}

.taal a:hover {
    color: black;
    cursor: pointer;
}

.banner {
    width: 100%;
    height: 35vh;
    background-image: url('/webiste/pexels-marco-carlotti-16364796-67276651.png');
    background-size: cover;
    background-position: 0 35%;
    background-repeat: no-repeat;
    margin-bottom: 20px !important;
}



.footer {
    padding: 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.topbanner {
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 15px;
    background-color: black;
    color: white;
    padding: 15px 15px;
    margin-bottom: 25px;
    font-weight: 500;
}

.topbanner img {
    vertical-align: -5.5px;
    width: 1.25rem;
    margin-right: 5px;
}

.viewall svg {
    width: 1rem;
    vertical-align: -3.5px;
}

/* Search Field Styles */
.search-container {
    display: flex;
    margin: 10px 0;
}

.search-container input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
}

.desktop-search {
    flex: 1;
    margin: 0 20px;
}

.mobile-search {
    display: none;
    width: 100%;
}

/* Mobile Menu Styles */

.phone-view {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}


.mobile-menu {
position: fixed;
top: 0;
right: -300px;
width: 250px;
height: 100%;
background-color: white;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
transition: right 0.3s ease;
z-index: 1000000;
padding: 20px;
overflow-y: auto;
}

.mobile-menu.open {
right: 0;
}


.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}


.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.mobile-nav-right {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-right a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.mobile-nav-right svg {
    width: 1rem;
}

.mobile-taal {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.mobile-taal a {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.525);
    text-decoration: none;
}

.mobile-taal a.active1 {
    color: black;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-left, .nav-right, .taal, .desktop-search {
        display: none;
    }

    .mobile-search {
        display: block;
    }

    header h1 {
        padding-bottom: 10px;
    }

    header h1 img {
        width: 120px;
    }
    .web-edit{
        display: none;
    }
    .container-1{
        padding: 10px !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu, .mobile-search {
        display: none !important;
    }

    .phone-view {
        display: none;
    }
  .phone-edit{
    display: none;
  }
}

.phone-view svg{
    width: 1.25rem;
    vertical-align: -2.5px;
}
.phone-view {
   
}
.phone-view a{
    font-size: 0.85rem;
    text-decoration: none;
 

    font-size: 0.85rem;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.559);
    transition: 0.25s;
    font-weight: 450 !important;
}
.mobile-search input{
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.092);
    font-family: 'InterTight', sans-serif;
    /* border-radius: 5px; */
    padding: 5px 10px;
    color: rgba(0, 0, 0, 0.442);
    transition: 0.5s;
    font-weight: 300;

}
.desktop-search input{
    width: 100%;
    border: solid 1px rgba(0, 0, 0, 0.092);
    font-family: 'InterTight', sans-serif;
    /* border-radius: 5px; */
    padding: 5px 10px;
    color: rgba(0, 0, 0, 0.442);
    transition: 0.5s;
    font-weight: 300;
}
.desktop-search input:focus{
    color: black;
    border: solid #3e7456 1px ;
    padding-left: 15px;
}
.mobile-search input:focus{
    color: black;
    border: solid #3e7456 1px ;
    padding-left: 15px;
}
.mobile-menu img{
    width: 150px;
}
* {
box-sizing: border-box;
}



.dropdown-menu {
background-color: rgb(255, 255, 255);
position: absolute;
width: 100vw;
left: 0;
height: auto;
z-index: 9999;
border-bottom: 1px solid rgba(0, 0, 0, 0.079);

padding: 45px 25px 25px 25px;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
pointer-events: none;
}

.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
pointer-events: auto;
}

.nav-wrapper {
overflow: visible;
}

.dropdown-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
}

.dropdown-links {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}

.dropdown-links a {
display: block;
padding: 8px 0;
color: #333;
text-decoration: none;
transition: color 0.2s;
}

.dropdown-links a:hover {
color: #000;
font-weight: bold;
}

.dropdown-image {
height: 100%;
}

.dropdown-image {
height: 100%;
overflow: hidden; /* important: keeps the container from "stretching" with the animation */
}

.dropdown-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 4px;

animation: pulse-scale 25s ease-in-out infinite;
transform-origin: center center; /* scales from the center */
}

@keyframes pulse-scale {
0% {
transform: scale(1);
}
50% {
transform: scale(1.20);
}
100% {
transform: scale(1);
}
}

.mobile-dropdown{
margin: 0;
padding: 0;
}
.mobile-dropdown a{
display: block;
font-size: 0.8rem;
padding: 5px 0 5px 5px;
color: rgba(0, 0, 0, 0.625);

}








* {
box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
float: left;
width: 50%;
height: 65vh; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
width: 100%;
}
}
.box-right img{
height: 100%;
width: 100%;
object-fit: cover;
margin: 0;
padding: 0;
}
.box-left{
background-color: black;
}

.box-left p{
text-transform: uppercase;
color: rgba(255, 255, 255, 0.852);
font-size: 0.9rem;
padding-left: 5px;
top: 25%;

position: relative;
font-weight: 300;
}
.row{
margin-top: 5vh;
}
.box-left img{
width: 65%;
height: auto;
object-fit: contain;
top: 25%;
position: relative;

}
.box-left button{
background-color: transparent;
text-transform: uppercase;
border: white solid 1px;
color: white;
padding: 8px 15px;
transition: 0.5s;

position: relative;

}
.box-left button:hover{
background-color:white;
color: black;
cursor: pointer;
}
.header-container{
width: 90%;
padding: 0 10px;
margin-left: auto;
margin-right: auto;
}

.container-footer {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
margin-left: auto;
margin-right: auto;
margin: 8% auto 0 auto;
border-top: 1px solid rgba(0, 0, 0, 0.173);
padding: 35px;


}
.footer{
margin: 0;
padding: 0;
background-color: rgba(0, 0, 0, 0.033);
}
.footer p{
font-size: 0.7rem;
color: rgba(0, 0, 0, 0.582);
font-style: italic;
text-align: center;
margin-bottom: 0;
padding: 5px;

}
.container-footer img{
opacity: 0.7; /* Adjust between 0 (transparent) and 1 (opaque) */
filter: brightness(1.5); /* Makes images brighter (1 = normal, >1 = brighter) */
}

.right-elements {
display: flex;
align-items: center;
gap: 20px;
}

.links {
display: flex;
gap: 15px;

}
.links a{
color: rgba(0, 0, 0, 0.578);
text-decoration: none;
font-size: 0.85rem;
}
.logo-right {
display: block;
}

@media (max-width: 768px) {
.container-footer {
  flex-direction: column;
  align-items: center; /* Changed from flex-start to center */
  text-align: center;
  max-width: 100%;

}

.right-elements {
  order: -1;
  width: 100%;
  flex-direction: column;
  align-items: center; /* Changed from flex-start to center */
  gap: 10px;
  margin-bottom: 15px;
}

.links {
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: center; /* Center the links */
  display: flex; /* Ensure links can be centered */
}

.logo-left {
  order: 1;
  margin-top: 15px;
  align-self: center; /* Ensure center alignment */
  margin-left: auto; /* These help with centering */
  margin-right: auto;
}

.logo-right {
  order: 2;
  margin-top: 15px;
  align-self: center; /* Ensure center alignment */
  margin-left: auto; /* These help with centering */
  margin-right: auto;
}
}
.container-1 h1{
        margin-bottom: 0;
   font-weight: 400;

   font-size: 1.5rem;
   font-family: 'InterTight', sans-serif;
    }
    .container-1 img{
        width: 12.5rem;
        vertical-align: 0;
    }
    .container-1 p{
        font-size: 0.85rem;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.784);
    }
    .container-1{
        padding: 5vh 15vh 5vh 15vh;
        
    }
   /* Add to your CSS */
.sticky-header {
position: fixed;
top: -115px; /* Start off-screen */
left: 0;
right: 0;
background-color: white;
z-index: 999999 !important;
box-shadow: 0 1px 5px rgba(221, 221, 221, 0.1);
transition: top 0.8s ease;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-header .header-container {
max-width: 100%;
margin: 0 auto;
padding: 15px  8px 0 8px;
}

.sticky-header.visible {
top: 0;
}

/* Adjust the main content to account for the sticky header */
body.sticky-header-active {
padding-top: 80px; /* Adjust this value based on your header height */
}
.header-extra1 svg{
width: 1rem;
vertical-align: -3px;
}
.header-extra1 a{
font-size: 0.75rem;
text-decoration: none;
color: rgba(0, 0, 0, 0.632);
font-weight: 400;
padding-right: 5px;
}
.dropdown svg{
width: 1rem;
vertical-align: -3px;
}
.sticky-header a{
transition: 0.5s;
}
.sticky-header a:hover{
color: black;
text-decoration: underline;
}
hr{

position: relative;
}

.phone-edit .up{
            height: 28vh;

        }
        .up img{
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
       .down{
          height: 35vh;
          background-color: black !important;

        }
        .down img{
            width: 100%;
            height: auto;
            padding: 0 40px !important;
            margin-top: 20%;
        }
        .imgss{
            margin-left: auto;
            margin-right: auto;
         
        }
        .down p{
            color: rgba(255, 255, 255, 0.777);
            text-align: center;
            margin: 0;
            padding: 0;
            text-transform: uppercase;
            font-size: 0.8rem;
            margin-top: 15px;
        }
        .down button{
            background-color: transparent;
text-transform: uppercase;
border: white solid 1px;
color: white;
padding: 8px 15px;
transition: 0.5s;
border-radius: 2.5px !important;
position: relative;
width: 100%;

        }
        .buttoncontainer {
            padding: 25px;
        }
        .box-left {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
position: relative; /* Needed if you want to keep your existing button positioning */
}

.centered-content {
width: 100%;
max-width: 300px; /* Adjust as needed */
}

.box-left img {
margin: 0 auto; /* Center the logo horizontally */
display: block; /* Needed for margin auto to work */
width: 100%; /* Adjust logo size as needed */
max-width: 300px; /* Maximum logo size */
}

.box-left p {
margin: 15px 0; /* Add some spacing around the text */
color: rgba(255, 255, 255, 0.852);
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 300;

}

.box-left button {
margin: 35px auto 0 auto; /* Center button and add top margin */
display: block; /* Needed for margin auto to work */
background-color: transparent;
text-transform: uppercase;
border: white solid 1px;
color: white;
padding: 8px 15px;
transition: 0.5s;
}

.box-left button:hover {
background-color: white;
color: black;
cursor: pointer;
}
.paymentlogo img{
    width: 65%;

}
.price .product-total{
    font-size: 0.6rem !important;
}

.ssd{
    text-decoration: none;
}

.filter4{
    display: none;
    font-size: 1.2rem;
    font-weight: 500;
  }

@media only screen and (max-width: 600px) {
    .filter4 {
        display: block;
    }
.header-container{
    width: auto;
}

.menu-toggle svg{
    width: 1.7rem !important;
    margin-left: 5px;
    margin-right: 10px;
}
.search input{
    padding: 8px 10px;
    border-radius: 2.5px;
}

.down img{
    padding: 0 55px 25px 55px !important;
}
.down{margin-bottom: 25px;}

header h1 img {
    width: 145px;
}



main > .product .product-imgs .product-small-imgs .product-img-small {
    height: auto;
    flex-basis: auto;
  }


  button[name="add_to_cart"] {
   padding: 12px 12px;
   font-weight: 500;
   text-transform: uppercase;
  }

  }


  .shipping-details h2{
    font-size: 15px !important ;
    font-weight: 500 !important;
  }


  .shipping-details label{
   font-size: 14px; 
  }

  .buttons {
    padding: 50px 0 !important;
  }
h3{
    font-size:1rem !important;
  
}