    body{
        margin: 0;
        background-color: white !important;
    }
 header {
  background: #000000cd;
  color: #fff;
  padding: 1rem 0;
  position: relative;
  z-index: 999;
  min-height: 60px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

/* Logo */
.leftLinks .logo {
  font-size: 1.4rem;
  font-weight: 200;
text-transform: uppercase;
  color: #fff;
}

/* Nav Links */
.rightLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.rightLinks a {
  color: #fff;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s;
}

.rightLinks a:hover {
  color: #f0c040;
}
.rightLinks .activeCta {
  color: #f0c040;
}
/* Hamburger (hidden by default) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* ======================== */
/* Responsive Styles */
/* ======================== */
@media (max-width: 768px) {
  /* Hide nav by default on mobile */
  .rightLinks {
    position: absolute;
    top: 100%;
    right: 0;
    background: #222;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 1rem;
  }

  .rightLinks a {
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
  }

  /* When menu is open */
  .rightLinks.open {
    max-height: 1000px;
    padding: 1rem;
  }
}
/* intro section */
.introductionSection {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.target{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
}
.introcontent {
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    width: 55%;
    height: 80vh;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.introcontent h1 {
    font-size: 3rem;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    transform: scaleY(1.5);
}

.introcontent h2 {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 25px;
    border-radius: 6px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', sans-serif;
}

.introcontentImages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    width: 100%;
    padding: 0 10%;
    margin-top: 30px;
    box-sizing: border-box;
}

.introcontentImages img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    background-color: white;
    border-radius: 16px;
    padding: 4px;
}

/* ====================== */
/* Responsive Adjustments */
/* ====================== */

/* Tablets */
@media (max-width: 1024px) {
    .introductionSection {
        flex-direction: column;
        height: auto;
        padding-top: 0px;
    }

    .introcontent {
        width: 100%;
        height: auto;
    }
    .target{
        width: 100%;
        height: auto;
background-color: red;
padding: 50px 0px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
    }

    .introcontent h1 {
        font-size: 2.5rem;
    }
}

/* Phones */
@media (max-width: 600px) {
    .introcontent {
        padding: 15px;
    }

    .introcontent h1 {
        font-size: 2rem;
        transform: scaleY(1.2);
    }

    .introcontent h2 {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .introcontentImages {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
        padding: 0 5%;
    }

    .introcontentImages img {
        max-height: 120px;
    }
}

/* categories lis */
.Category{
    height:auto; 
    padding: 0px 30px;
    display: grid;
    position: relative;
    grid-template-columns: repeat(1,1fr);
    align-items: center;
    padding-bottom: 0px;
    font-family: 'Poppins',sans-serif;
    background-color: rgb(255, 255, 255);
}
.scrollContainer {
    display: grid;
    align-items: center;
    overflow: hidden;
    position: relative;
    }
    .scrollCat::-webkit-scrollbar{
    display: none;
    }
    .scrollCat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:left;
    align-items: flex-start;
    width:90%; /* Adjust width as needed */
    padding: 20px 10px;
    margin: 0px auto;
    }
    .scrollCat a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 5px; /* Space between items */
    text-decoration: none;
    color: black; /* Adjust color as needed */
    font-weight: 300;
    align-items: center;
    font-size: 16px;
    padding: 0px 25px;
    overflow: hidden;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.34);
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0);
    }
    .scrollCat a:hover{
        background-color: #1b1b1bce;
        color: whitesmoke;
    }

/* === Section Container === */
    .hidden {
  display: none;
}

#loader {
  text-align: center;
  color: #555;
  font-weight: 500;
}
.seo-keywords {
  font-size: 0.1px;
  line-height: 0;
  color: transparent;
  display: inline-block;
  margin: 0 !important;
}

.produce {
  padding: 0rem 1rem;
  background: #fdfdfd; /* clean, gallery-like background */
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  color: #222;

  width: 92%;
  margin: 0px auto;
}

.produce h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.produce h2 span a {
  font-size: 0.95rem;
  text-decoration: none;
  color: #555;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.produce h2 span a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

/* === Grid Layout === */
.produceWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

/* === Card Styling === */
.produceWrapper a {
    position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produceWrapper a:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* === Artwork Image === */
.produceWrapper a div {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff; /* background like a gallery wall */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px; /* frame spacing */
  box-sizing: border-box;
}

.produceWrapper a img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border: 4px solid #f5f5f5; /* light frame color */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* subtle depth */
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.produceWrapper a:hover img {
  transform: scale(1.08);
   box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* === Title & Price === */
.produceWrapper p.name{
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 1rem 0.5rem;
  color: #111;
}

.produceWrapper p{
  font-size: 1rem;
  font-weight: 500;
  margin: 0 1rem 1rem;
  color: #444;

}
.produceWrapper  span{
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: 14px;
    font-weight: 400;
}
.produceWrapper span.available{
    color: green;
}
.produceWrapper span.sold{
    color: orangered;
}
.produceWrapper .iniko.price{
  margin-bottom: 0px !important;
  margin-top: 10px !important; 
  font-size: 18px !important;
}
.produceWrapper .iniko.name{
  margin-top: 5px !important;
   font-size: 18px !important;
}
.produceWrapper .iniko.size{
  margin-top:0 !important; 
  margin-bottom: 10px !important; 
  font-weight: 200 !important;
}
.produceWrapper .iniko.twin{
    margin-top:0 !important; 
    margin-bottom: 0 !important; 
    font-weight: 200 !important;
}

.produceWrapper h5 span {
  font-size: 0.85rem;
  font-weight: 400;
  margin-right: 6px;
  color: #888;
}

/* === Responsive Tweaks === */
@media (max-width: 768px) {
  .produce {
    padding: 0rem 1rem;
  }
  .produce h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .produceWrapper {
    gap: 1rem;
  }
  .produce h2 {
    font-size: 1.3rem;
  }
  .produceWrapper h4 {
    font-size: 1rem;
  }
  .produceWrapper h5 {
    font-size: 0.95rem;
  }
}


 /* Section Wrapper */
.uniqueWhy {
  width: 100%;
  padding: 60px 20px;
  background:#f9f9f9; /* light background for contrast */
  box-sizing: border-box;
}

/* Inner Container */
.unique {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.unique h2 {
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-style: italic;
  margin-bottom: 20px;
  color: #333;
}

/* Content Layout */
.aboutMaterial {
  display: flex;
  flex-wrap: wrap; /* ensures it wraps on small screens */
  align-items: center;
  gap: 30px;
}

/* Text Block */
.aboutMaterial .text {
  flex: 1 1 500px; /* flexible, min width 500px */
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.aboutMaterial .text p {
  margin-bottom: 1.2em;
  font-style: italic;
}
.learn-more {
  display: inline-block;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
  color: #8B4513; /* earthy tone to match barkcloth */
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: #5a2d0c;
  border-bottom: 2px solid #5a2d0c;
}
/* Image Block */
.aboutMaterial .image {
  flex: 1 1 150px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutMaterial .image img {
min-width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* 📱 Responsive Adjustments */
@media (max-width: 992px) {
  .unique h2 {
    font-size: 1.8rem;
  }
  
  .aboutMaterial {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .aboutMaterial {
    flex-direction: column; /* stack on small screens */
    text-align: center;
  }
  
  .aboutMaterial .text {
    flex: 1 1 100%;
  }

  .aboutMaterial .image {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .unique h2 {
    font-size: 1.5rem;
  }
  
  .aboutMaterial .text {
    font-size: 0.95rem;
  }
}

/* ===== Layout ===== */
.social-section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 1rem;
  background: #ffe387;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 2rem auto;
  box-sizing: border-box;
}

/* ===== Containers ===== */
.con1 {
  flex: 1 1 300px;
  min-width: 400px;
  box-sizing: border-box;
}

.socials h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 300;
  font-style: italic;
}

/* ===== Social link rows ===== */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #fff7d1;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-links img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.social-links span {
  flex: 1;
}

/* ===== Instagram feed container ===== */
.feed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.elfsight-container {
  width: 100%;
  max-width: 600px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 12px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.08);
  padding: 0.5rem;
  background: white;
  scroll-behavior: smooth;
}

/* Scrollbar styling */
.elfsight-container::-webkit-scrollbar {
  width: 8px;
}
.elfsight-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.elfsight-container::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.elfsight-app-6e36890f-4490-4331-9223-b99cb94dbb3f {
  width: 100% !important;
  overflow: hidden;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 768px) {
  .social-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
      border-radius: 0px;
  }

  .con1 {
    min-width: 100%;
  }

  .social-links a {
    justify-content: center;
    text-align: center;
  }

  .feed {
    margin-top: 1.5rem;
  }

  .elfsight-container {
    max-height: 400px;
  }
}







    footer{
background-color: rgb(0, 0, 0);
border-top: 1px solid grey;
font-family: 'Poppins', sans-serif;
position: sticky;
width: 100%;
top: 100%;
    }
    footer p{
        text-align: center;
        color:whitesmoke;
        text-transform: uppercase;
        margin:0px;
        padding: 5px 0px;
        font-size: 13px;
        letter-spacing: 2px;
    }
/* PRODUCT DETAIL PAGE CSSS*/

/* detail page */
.bullets{
    color: black;
    font-size: 16px;
    font-weight: 300;
}
.detWrapper{
    display: grid;
    grid-template-columns: 1fr;
}
.imgContainer{
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    background-color:white;
    padding:0px;
    border-radius: 0px;
}


.mainImg {
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    min-height: 350px;
    max-height: auto; /* Height of the container */
    padding: 0px;
    border-radius: 6px;
    background-color: whitesmoke;
    width: 100%;
    position: relative;
    overflow: hidden; /* Ensures any overflow content is hidden */
}
.aboutPiece{
    margin: 0px 20px;
}
.aboutPiece p{
    margin-bottom: 10px;
}
.aboutPiece h4{
    margin-bottom: 20px;
}
.mainImg img {
    width: auto; /* Image maintains its aspect ratio */
    max-width: 90%; /* Image cannot exceed the container's width */
    height: auto; /* Maintains the image aspect ratio */
    max-height: 100%; /* Image cannot exceed the container's height */
    margin: auto; /* Centers the image within the container */
    padding: 4px;
    background: #fff; /* Background color of the frame */
    border: 5px solid #4f4f4f; /* Border around the image */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Shadow for a 3D effect */
    object-fit: contain; /* Ensures the image scales down proportionally to fit within the container */
}

#zoom-lens {
    position: absolute;
    border: px solid #d4d4d4;
    width: 80px; /* Adjust as needed */
    height: 80px;
    visibility: hidden;
    cursor: none;
    z-index: 999; /* Make sure it's on top of other elements */
    pointer-events: none; /* Ensure the lens doesn't interfere with mouse/touch events */
}

#zoom-result {
    position: fixed;
    border: 1px solid #d4d4d4;
    width: 200px; /* Adjust as needed */
    height: 130px;
    top: 40px;
    box-shadow: 0px 2px 8px rgb(170, 170, 170);
    z-index: 10;
    left: 20px; /* Position to the right of the main image */
    background-repeat: no-repeat;
    background-size: 200% 200%; /* Adjust zoom level */
    visibility: hidden;
}

.detailSection{
    padding-top: 10px;
    }
    .vaZoom{
       position: relative;
        overflow: hidden;
    }
    .vaZoom::-webkit-scrollbar{
        display: none;
    }
    .vaZoom img{
        transition: margin 0.2s ease, transform 0.2s ease;
    
    }
    .controls {
        position: absolute;
        display: flex;
        flex-direction: row;
        margin-top: 10px;
        text-align: center;
        bottom: 0px;
        padding-bottom: 5px;
    
    }
    
    .controls button {
        margin: 4px 7px;
        font-size: 12px;
        cursor: pointer;
        border: none;
        height: 30px;
        background-color:rgba(255, 255, 255, 0.904);
        text-align: center;
        width: 30px;
        border-radius: 360px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        align-items: center;
        color: rgba(39, 39, 39, 0.877);
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.233);
    }
    .controls button:hover {
        background-color: rgba(39, 39, 39, 0.918);
        color: whitesmoke;
    }
    button i{
        
    }
    .controls button#reset{
        border-radius: 360px;
    }


    .pieceDetails{
        background-color: white;
        padding: 10px;
        margin-top:10px ;
        margin-left: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .pieceDetails h3{
        margin: 0;
        font-weight:300;
        font-size:25px;
        line-height:30px;
        margin-bottom: 10px;
    }
  

.pieceDetails .agean{
display: flex;
margin: 0;
font-size: 20px;
flex-direction: row;
justify-content: center;
align-items: flex-start;
}
.pieceDetails .agean span{
font-size: 20px;
}
.pieceDetails h5{
        margin: 0;
        font-weight:300;
        font-size: 14px;
    }
    .pieceDetails h5 span{
        font-weight: 400;
        margin-right: 5px;
    }
.varums {

display: flex;
flex-wrap: wrap; /* Allows items to wrap to the next line */
align-items: flex-start;
margin-top:4px;
margin-bottom: 0px;
padding: 0px 10px;
padding-left: 0px;
gap: 7px; /* Adds space between flex items */
} small{
font-weight: bold;
color: rgb(58, 58, 58);
font-weight: 300;
font-family: 'Poppins', sans-serif;
margin-top:20px;
}
.shortDesc{
    margin: 0;
    color: rgb(31, 31, 31);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-align: left;
}
.varums .size {
border: 1px solid rgb(122, 122, 122);
font-size: 10px;
padding: 2px 10px;
text-align: center;
color: rgb(75, 75, 75);
font-family: 'Poppins', sans-serif;
text-transform: uppercase;
flex: 0 1 auto; /* Allows the item to shrink and grow as needed */
box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
.input{
    width: 40px;
    height: 20px;
    text-align: center;
    border: 1px solid rgb(90, 90, 90);
    background-color:transparent;
    color: rgb(114, 114, 114);
    border-radius: 0px;
    font-size: 11px;
    margin-left: 3px;
}
.sqtyC{
display:flex;
flex-direction: row;
align-items:center;
padding: 3px;
border: 1px solid rgb(173, 173, 173); 

}
.slects{
        width: 120px;
        height: 35px;
        font-size: 16px;
        border-radius: 6px;
        font-family: 'Poppins', sans-serif;
        padding: 0px 10px;
        margin-left: 0px;
        color: rgb(31, 31, 31);
        border: 1px solid black;
        box-shadow: 0px 2px 8px grey !important;
    }
    .qtyPara{
margin: 0;
display: flex; flex-direction: row;
align-items: center;
margin-left: 10px
    }
    .qtyPara button{
        height: 30px;
        border: 1px solid grey;
        border-radius: 0px;
        color: orange;
        padding: 0px 10px;
        background-color: white;
        font-size: 17px;
        padding: auto;
        box-shadow: 0px 2px 8px grey;
        width: 35px;
    }
    .qtyPara input{
        width: 40px;
        height: 40px;
        text-align: center;
        border: 1px solid black;
        margin: 0px 10px;
    }
#pricing{
    margin-left: 2px;
}

.mButton{
margin-top: 0px;
}
.mButton button{
    border: none;
    text-transform: capitalize;
    padding: 10px 10px;
    font-size: 15px;
    font-family: 'Poppins',sans-serif;
    box-shadow: 0px 2px 18px rgb(206, 206, 206);
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.712);
    color: whitesmoke;
    margin-right: 10px;
    width: 200px;
    margin-top: 15px;
    cursor: pointer;
}
.mButton button:hover{
    background-color: rgba(0, 0, 0, 0.925);
}

@media (min-width: 600px) {
    
}
@media (min-width: 768px) {
    
}
@media (min-width: 992px) {



/* detail page */
.bullets{
    color: black;
    font-size: 13px;
    font-weight: 300;
    }
    .detWrapper{
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    }
    .imgContainer{
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    background-color: transparent;
    padding:0px;
    border-radius: 0px;
    }

    .mainImg{
    display: flex;
    flex-direction: column;
    margin-left: 0px;
    height: auto;
    max-height: 85vh;
    background-color: whitesmoke;
    padding: 0px;
    width: 90%;
    border-radius: 6px;
    
    }
    .mainImg img{
        width:auto;
        max-width: 90%;
        height: auto;
        max-height: 75vh;
        margin: auto;
        padding: 4px;
        background: #fff; /* Background color of the frame */
        border: 10px solid #4f4f4f; /* Color and thickness of the outer frame */
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.5); /* Shadow for a 3D effect */
        
    }
    
    .pieceDetails{
        background-color: white;
        padding: 10px;
        margin-left: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .pieceDetails h3{
        margin: 0;
        font-weight:300;
        font-size:25px;
        line-height:30px;
        margin-bottom: 10px;
    }
    
    
    .pieceDetails .agean{
    display: flex;
    margin: 0;
    font-size: 20px;
    flex-direction: row;
    align-items: flex-start;
    }
    .pieceDetails .agean span{
    font-size: 10px;
    }
    .pieceDetails h5{
        margin: 0;
        font-weight:300;
        font-size: 11px;
    }
    .pieceDetails h5 span{
        font-weight: 400;
        margin-right: 5px;
    }
    .varums {
    
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    align-items: flex-start;
    margin-top:4px;
    margin-bottom: 0px;
    padding: 0px 10px;
    padding-left: 0px;
    gap: 7px; /* Adds space between flex items */
    } small{
    font-weight: bold;
    color: rgb(58, 58, 58);
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    margin-top:20px;
    }
    .shortDesc{
    margin: 0;
    color: rgb(31, 31, 31);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-align: left;
    }
    .varums .size {
    border: 1px solid rgb(122, 122, 122);
    font-size: 10px;
    padding: 2px 10px;
    text-align: center;
    color: rgb(75, 75, 75);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    flex: 0 1 auto; /* Allows the item to shrink and grow as needed */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }
    .input{
    width: 40px;
    height: 20px;
    text-align: center;
    border: 1px solid rgb(90, 90, 90);
    background-color:transparent;
    color: rgb(114, 114, 114);
    border-radius: 0px;
    font-size: 11px;
    margin-left: 3px;
    
    }
    .sqtyC{
    display:flex;
    flex-direction: row;
    align-items:center;
    padding: 3px;
    border: 1px solid rgb(173, 173, 173); 
    
    }
    #pricing{
    margin-left: 2px;
    }
    .choiceSize{
    box-shadow: 2px 2px 8px rgb(0, 211, 18);   
    }
    .choiceQty{
    box-shadow: 2px 2px 8px rgb(0, 211, 18);  
    }
    .mButton{
    margin-top: 10px;
    }

}

        .inquire-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.inquire-btn:hover {
  background: #333;
}
/* --------------------------- */
/* Base Modal Styles */
/* --------------------------- */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex; justify-content: center; align-items: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --------------------------- */
/* Close Button */
/* --------------------------- */
.close-modal {
  position: absolute;
  right: 15px; top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
}
.close-modal:hover {
  color: #000;
}

/* --------------------------- */
/* Form Styles */
/* --------------------------- */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-content input,
.modal-content textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.modal-content button {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-content button:hover {
  background: #333;
}

/* --------------------------- */
/* Success / Error messages */
/* --------------------------- */
.success {
  color: green;
  font-weight: 500;
  text-align: center;
}

.error {
  color: red;
  font-weight: 500;
  text-align: center;
}

/* ✅ Ensure hidden elements stay hidden */
.hidden {
  display: none !important;
}


/* SIDE NAV CSSS */
.sideMenu{
    position: fixed;
    min-height: 100vh;
    max-height: auto;
    width:60%;
    background-color: white;
    top: 0;
    z-index: 30;
    right: 110%;
    transition: right 0.6s ease;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.356);
}
.sideMenu .menuTop{
    display: grid;
    grid-template-columns: 1fr 0.1fr;
    align-items: flex-start;
    background-color: black;
    align-items: center;
    position: relative;
}.sideMenu .menuTop h5{
color: rgb(230, 230, 230);
text-align: center;
font-family: 'Poppins', sans-serif;
text-transform: uppercase;
margin: 0;
font-weight: 400;
font-size: 16px;
}
.sideMenu .menuTop button{
    width: 30px;
    height: 30px;
    margin: 3px 0px;
    background-color:whitesmoke;
    color:black;
    border: none;
    font-size: 25px;
    font-weight: 300;
}
.sideMenu.show {
    right: 40%; /* Show the menu */
  }
  .sideMenu .MenuList{
display:flex;
flex-direction: column;
align-items: flex-start;
padding-left: 10px;
padding-top:10px;
height: 70vh;
overflow: auto;
  }
  .sideMenu .MenuList a{
    text-decoration: none;
    color: black;
    font-size: 15px;
    padding: 3px 10px;
    font-family: 'Poppins',sans-serif;
  }

  @media (min-width: 600px) {
    
    .sideMenu{
      position: fixed;
      min-height: 100vh;
      max-height: auto;
      width: 60%;
      background-color: white;
      top: 0;
      z-index: 30;
      right: 1100%;
      transition: right 0.6s ease;
      box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.356);
  }
  .sideMenu .menuTop{
      display: grid;
      grid-template-columns: 1fr 0.1fr;
      align-items: flex-start;
      background-color: black;
      align-items: center;
      position: relative;
  }.sideMenu .menuTop h5{
  color: rgb(230, 230, 230);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  }
  .sideMenu .menuTop button{
      width: 30px;
      height: 30px;
      margin: 3px 0px;
      background-color:whitesmoke;
      color:black;
      border: none;
      font-size: 25px;
      font-weight: 300;
  }
  .sideMenu.show {
      right: 40%; /* Show the menu */
    }
    .sideMenu .MenuList{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 30px;
  height: 70vh;
  overflow: auto;
  padding-top:20px;
    }
    .sideMenu .MenuList a{
      text-decoration: none;
      color: black;
      font-size: 15px;
      padding: 3px 10px;
    }
    .sideMenu .MenuList a:hover{
      border-bottom: 1px solid black;
    }
  }
  @media (min-width: 768px) {
    
    .sideMenu{
      position: fixed;
      min-height: 100vh;
      max-height: auto;
      width: 60%;
      background-color: white;
      top: 0;
      z-index: 30;
      right: 110%;
      transition: right 0.6s ease;
      box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.356);
  }
  .sideMenu .menuTop{
      display: grid;
      grid-template-columns: 1fr 0.1fr;
      align-items: flex-start;
      background-color: black;
      align-items: center;
      position: relative;
  }.sideMenu .menuTop h5{
  color: rgb(230, 230, 230);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  }
  .sideMenu .menuTop button{
      width: 30px;
      height: 30px;
      margin: 3px 0px;
      background-color:whitesmoke;
      color:black;
      border: none;
      font-size: 25px;
      font-weight: 300;
  }
  .sideMenu.show {
      right: 40%; /* Show the menu */
    }
    .sideMenu .MenuList{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 30px;
  padding-top:20px;
    }
    .sideMenu .MenuList a{
      text-decoration: none;
      color: black;
      font-size: 16px;
      padding: 5px 10px;
    }
    .sideMenu .MenuList a:hover{
      border-bottom: 1px solid black;
    }
  }
  @media (min-width: 992px) {

    .sideMenu{
      position: fixed;
      min-height: 100vh;
      max-height: auto;
      width: 60%;
      background-color: white;
      top: 0;
      z-index: 30;
      right: 110%;
      transition: right 0.6s ease;
      box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.356);
  }
  .sideMenu .menuTop{
      display: grid;
      grid-template-columns: 1fr 0.1fr;
      align-items: flex-start;
      background-color: black;
      align-items: center;
      position: relative;
  }.sideMenu .menuTop h5{
  color: rgb(230, 230, 230);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  }
  .sideMenu .menuTop button{
      width: 30px;
      height: 30px;
      margin: 3px 0px;
      background-color:whitesmoke;
      color:black;
      border: none;
      font-size: 25px;
      font-weight: 300;
  }
  .sideMenu.show {
      right: 40%; /* Show the menu */
    }
    .sideMenu .MenuList{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 30px;
  padding-top:20px;
    }
    .sideMenu .MenuList a{
      text-decoration: none;
      color: black;
      font-size: 16px;
      padding: 5px 10px;
    }
    .sideMenu .MenuList a:hover{
      border-bottom: 1px solid black;
    }


  }

  /* HELP PAGE CSSS */
  .helpWrapper{
    padding: 0px 0px;
    display: grid;
    grid-template-columns:1fr;
    align-items: flex-start;
    padding-top: 0px;
    position: relative;
    min-height: 90vh;
    background-color: rgba(245, 245, 245, 0.514);
    transition: right 0.3s ease;
     transition: top 0.4s ease; /* smooth sliding */
}.contentContainer{
    width: 100%;
    display: grid;
    grid-template-columns:1fr;
    margin-top: 50px;
    align-items: flex-start;
    position: relative;
    transition: right 0.3s ease;
}
/* Side help menu */
/* Side help menu */
.helpNav {
    position: fixed; /* Ensure it stays in place */
    background-color: whitesmoke;
    box-shadow: 0px 2px 8px rgb(179, 179, 179);
    width: 35%;
    z-index: 10;
    top: 40px;
    left: 0; /* Start position */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 15px;
    transition: transform 0.3s ease; /* Smooth transition for sliding in/out */
    transform: translateX(-100%); /* Initially hide off-screen to the left */
}

/* Button to show/hide menu */
.showHelpNav {
    position: fixed;
    height: 50px;
    width: 30px;
    font-size: 20px;
    background-color: whitesmoke;
    box-shadow: 0px 2px 8px grey;
    border: none;
    top:40px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    transition: right 0.3s ease; /* Smooth transition for button movement */
    left: 0; /* Position it on the left side */
}

/* Icon styling */
.showHelpNav i {
    color: rgb(39, 39, 39);
}

/* Menu visible */
.showHelpNavigator {
    transform: translateX(0); /* Slide the menu into view */
}


.helpNav .btn {
    padding: 2px 5px;
    margin: 0px;
    border:none;
    border-radius: 0px;
    font-size: 12px;
    background-color:transparent;
    text-align: left;
    color: #333;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.closeHelpnav{
    position: absolute;
    top: 0;
    right: 0;
    border:none;
    background-color: black;
    font-size: 14px;
    color: #ccc;
}
.helpNav .btn:hover {
    border-bottom: 1px solid rgb(182, 182, 182);
}

.helpContent{
    background-color:transparent;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    align-items: flex-start;
}
.helpNav .active-btn{
    border-bottom: 1px solid rgb(182, 182, 182);
}
.helpDiv{
    display: none;
}
.active-helpDiv{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1,1fr); 
    align-items: center;
    margin: auto;
}
.active-helpDiv h2{
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0px 40px;
}

/* contact window section */
            .contactDetails{
                margin: 10px 15px;
                width: 90%;
                font-weight: 400;
                font-family: 'Poppins', sans-serif;
            }
            .contactDetails p{
                margin: 0;
                font-size: 13px;
            }
            .contactDetails p span{
                font-weight: bold;
                margin-left: 5px;
            }
            .social{
                margin:0px 15px;
                border-bottom: 1px solid rgb(235, 235, 235);
                padding-bottom: 20px;
                display: flex;
                font-family: 'Poppins', sans-serif;
                align-items: center;
                flex-direction: row;
                margin-bottom: 20px;
            }
            .social h3{
                margin: 0;
                font-weight: 300;
                margin-right: 10px;
                font-size: 12px;
            }
            .social a{
                text-decoration: none;
                color: black;
                font-size: 19px;
                margin: 0px 15px;
            }
            .social a:hover{
                color: orangered;
            }
             .formz{
                grid-template-columns: repeat(1,1fr);
                font-family: 'Poppins',sans-serif;
                margin: 0px 10px;
                padding-bottom: 40px;
            }
            .formz h6{
                margin: 0;
                background-color: black;
                color: rgb(209, 209, 209);
                font-weight: 400;
                padding: 3px 10px;
                font-family: 'Poppins',sans-serif;
                font-size: 12px;
           
            }
            .formz p{
                display: grid;
                grid-template-columns: repeat(1,1fr);

            }
            .formz p label{
                font-family: 'Poppins',sans-serif;
                font-size: 13px;
            }
            .formz p input{
                border-radius: 0px;
                border: 1px solid grey;
                border-radius: 6px;
                outline: none;
                font-family: 'Poppins',sans-serif;
                height: 27px;
                font-size: 14px;
                padding: 2px 10px;
            }
            .formz p textarea{
                resize: none;
                height: 170px;
                border-radius: 6px;
                outline: none;
                font-family: 'Poppins',sans-serif;
                font-size: 16px;
                padding: 2px 10px;
            }
            /*
            .formz p{
                display: flex;
                flex-direction: column;
                margin: 0px 10px;
            }
            .formz p label{
                font-size: 12px;
                margin-top: 5px;
                font-family: 'Poppins',sans-serif;
            }
            .formz p input{
                border-radius: 0px;
                border: 1px solid grey;
                border-radius: 6px;
                outline: none;
                font-family: 'Poppins',sans-serif;
                height: 27px;
                font-size: 16px;
                width: 70%;
                padding: 2px 10px;
            }
            .formz p textarea{
                resize: none;
                height: 170px;
                border-radius: 6px;
                outline: none;
                font-family: 'Poppins',sans-serif;
                font-size: 16px;
                padding: 2px 10px;
            }
            .formz p:nth-child(6){
                grid-column: span 3;
            }*/
/* end contact window section */
/* shipping */
.shipping-info {
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
font-family: 'Poppins',sans-serif;
}

.shipping-info h2 {
font-size: 24px;
color: #333;
margin-bottom: 15px;
}

.shipping-info h3 {
font-size: 18px;
color: #555;
margin-top: 20px;
}

.shipping-info p {
font-size: 13px;
color: #666;
line-height: 1.6;
}

.shipping-info ul {
list-style-type: disc;
margin-left: 20px;
}

.shipping-info ul li {
margin-bottom: 10px;
}

.shipping-info .btn {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

.shipping-info .btn:hover {
text-decoration: underline;
}
/* dend shipping */

/* returns */
.returns-info {
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
font-family: 'Poppins', sans-serif;
border-radius: 8px;
}

.returns-info h2 {
font-size: 24px;
color: #333;
margin-bottom: 15px;
}

.returns-info h3 {
font-size: 17px;
color: #555;
margin-top: 20px;
}

.returns-info p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.returns-info ul {
list-style-type: disc;
margin-left: 20px;
}

.returns-info ol {
list-style-type: decimal;
margin-left: 20px;
}

.returns-info ul li, .returns-info ol li {
margin-bottom: 10px;
}

.returns-info .btn {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

.returns-info .btn:hover {
text-decoration: underline;
}
/* end returns */
/* order tracking */
        .order-tracking-info {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins',sans-serif;
}

.order-tracking-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.order-tracking-info h3 {
    font-size: 17px;
    color: #555;
    margin-top: 20px;
}

.order-tracking-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.order-tracking-info ul {
    list-style-type: disc;
    margin-left: 14px;
}

.order-tracking-info ol {
    list-style-type: decimal;
    margin-left: 14px;
}

.order-tracking-info ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.order-tracking-info ol li {
    margin-bottom: 10px;
    font-size: 14px; 
}

.order-tracking-info .btn {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.order-tracking-info .btn:hover {
    text-decoration: underline;
}

    
/* end order tracing */



/* payment */
.payment-info {
padding: 20px;
background-color: #f5f5f5;
border: 1px solid #ddd;
border-radius: 8px;
font-family: 'Poppins', sans-serif;
}

.payment-info h2 {
font-size: 24px;
color: #333;
margin-bottom: 15px;
}

.payment-info h3 {
font-size: 17px;
color: #555;
margin-top: 20px;
}

.payment-info p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.payment-info ul {
list-style-type: disc;
margin-left: 20px;
}

.payment-info ul li {
margin-bottom: 10px;
font-size: 14px;
}

.payment-info .btn {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

.payment-info .btn:hover {
text-decoration: underline;
}
/* end payment */

/* account mgt */
.account-management {
padding: 20px;
background-color: #f5f5f5;
border: 1px solid #ddd;
font-family: 'Poppins', sans-serif;
border-radius: 8px;
}

.account-management h2 {
font-size: 24px;
color: #333;
margin-bottom: 15px;
}

.account-management h3 {
font-size: 17px;
color: #555;
margin-top: 20px;
}

.account-management p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.account-management ul {
list-style-type: disc;
margin-left: 20px;
}

.account-management ul li {
margin-bottom: 10px;
font-size: 14px;
}

.account-management .btn {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

.account-management .btn:hover {
text-decoration: underline;
}

/* end account mgt */

/* size guide */
.size-guide {
padding: 20px;
background-color: #f5f5f5;
border: 1px solid #ddd;
border-radius: 8px;
font-family: 'Poppins', sans-serif;
}

.size-guide h2 {
font-size: 24px;
color: #333;
margin-bottom: 15px;
}

.size-guide h3 {
font-size: 17px;
color: #555;
margin-top: 20px;
}

.size-guide p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.size-guide ul {
list-style-type: disc;
margin-left: 20px;
}

.size-guide ul li {
margin-bottom: 10px;
}

.size-guide .btn {
color: #007bff;
text-decoration: none;
font-weight: bold;
}

.size-guide .btn:hover {
text-decoration: underline;
}

.size-guide .dimensions-chart {
margin-top: 20px;
}

.size-guide .dimensions-chart img {
max-width: 100%;
height: auto;
border: 1px solid #ddd;
border-radius: 8px;
}
/* end size guide */



/* prodct care csss*/
        .product-care {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

.product-care h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.product-care h3 {
    font-size: 17px;
    color: #555;
    margin-top: 20px;
}

.product-care p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.product-care ul {
    list-style-type: disc;
    margin-left: 20px;
}

.product-care ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.product-care .additional-tips {
    margin-top: 20px;
}

.product-care .additional-tips ul {
    list-style-type: square;
    margin-left: 20px;
}
@media (min-width: 600px) {
    .active-helpDiv{
        width: 90%;
    }
}
@media (min-width: 768px) {
    .active-helpDiv{
        width: 90%;
    }
}
@media (min-width: 992px) {
    .helpNav {
        position: fixed; /* Ensure it stays in place */
        width: 15%;
        transform: translateX(0%); /* Initially hide off-screen to the left */
    }
    .active-helpDiv{
        width: 65%;
    }
}

/* end product care */