body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background-color: white;
    color: black;
}

@font-face {
  font-family: 'Shapiro 95 Super Extd';
  src: url('assets/fonts/shapiro-95-super-extd.otf') format('opentype'),
       url('assets/fonts/shapiro-95-super-extd.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Shapiro 45 Welter';
  src: url('assets/fonts/shapiro-45-welter-wide.otf') format('opentype'),
       url('assets/fonts/shapiro-45-welter-wide.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Shapiro 85 Super Extd';
  src: url('assets/fonts/shapiro-85-super-extd.otf') format('opentype'),
       url('assets/fonts/shapiro-85-super-extd.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    align-content: center;
}

.logo img {
    width: 150px;
    align-content: center;
}

.nav-links {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns items to the right */
    gap: 10px;
    list-style: none; /* Removes default bullet points */
    padding: 0;
    margin: 0;
}

.nav-links li {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Shapiro 45 Welter', sans-serif;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: gray;
}

.main-content p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1/3 and 2/3 split */
    gap: 20px;
    padding: 20px;
    max-width: 100%;
    justify-content: center;
}

.column-left {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: right;
}

.column-left h2 {
    font-size: 18px;
    font-weight: bold;
}

.column-right {
    background-color: #fffffff;
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
}

.column-right h1 {
    font-family: 'Shapiro 95 Super Extd', sans-serif;
    font-size: 28px;
    line-height: 32px;
}

.column-right h2 {
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.column-right h3 {
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding-top: 0px;
}

.column-right p {
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

.column-right ul {
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

.column-right li {
    padding-bottom: 15px;
}

.column-right img {
    width: 100%; /* Makes the image scale to fit the width of .column-right */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes unwanted whitespace around the image */
    object-fit: cover; /* Optional: Ensures the image covers the entire container if needed */
}

.column-right-body-content {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
}

.column-right-wrapper {
    width: 66.66%;
}

.column-right,
.column-right-boy-content {
    padding: 20px;
    margin-bottom: 20px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    flex-direction: column;
}

.socials img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    flex-direction: column;
    width: 40px;
}

.copyright {
    font-size: 12px;
    font-weight: normal;
    align-content: center;
    text-align: center;
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
    line-height: 1.3;
}

.button-container {
    display: flex; /* Aligns buttons side-by-side */
    gap: 10px; /* Adds space between buttons */
    justify-content: left;
    margin-top: 20px;
}

.btn-1 {
    padding: 10px 20px;
    background-color: #E50C45;
    color: white !important;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

.btn-2 {
    padding: 10px 20px;
    background-color: #000000;
    color: white !important;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
    font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

a.btn-1,
a.btn-2 {
  color: white !important;           /* override blue link */
  text-decoration: none !important;  /* remove underline */
  padding: 0px;
}

a.btn-2 {
  background-color: #000;
}



.product-gallery {
  max-width: 100%;
}

.main-image-container {
  width: 100%;
  overflow: hidden;
}

#main-image {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.thumbnail-row {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
}

.thumbnail {
  flex: 1 1 calc(16.66%); /* 6 thumbnails per row with gap */
  max-width: calc(16.66%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.2s ease;
}



.thumbnail.active {
  opacity: 1;
  width: 25%;
}



.btn:hover {
    background-color: #555;
}


/* Base styling */
.hamburger {
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  display: none; /* Hide on desktop */
  left: 100px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  color: black;
  display: none; /* Hide the menu initially */
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-right: 20px !important;
  z-index: 1000; /* Ensure the menu stays on top of the page */
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 150px;
  margin-right: 30px;
  text-align: center;
  font-family: 'Shapiro 45 Welter', sans-serif;
}

.mobile-menu li {
  margin: 30px 0;
  font-size: 20px;
  font-weight: bold;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
}

/* Close button positioning */
.close-btn {
  font-size: 40px;
  position: absolute;
  top: 100px;
  left: 35px;
  cursor: pointer;
  z-index: 1001; /* Ensure it's above the menu */
  color: black;
}

/* Container for the full product section */
.product-list-container {
  padding: 20px;
  background-color: #fff; /* Light background for contrast */
}

/* Grid layout for products */
.product-list {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
}

/* Product card link */
.prod-thumb {
  width: 50%;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}


/* Image wrapper */
.prod-thumb-container {
  width: 100%;
  aspect-ratio: 1 / 1; /* ensures it's a square */
  overflow: hidden;
  position: relative;
}

.prod-thumb-container .product-list-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



/* Sold out label (optional) */
.prod-thumb-status.bar {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

/* Product info section */
.prod-thumb-info {
  padding-top: 10px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 16px;
  background-color: #fff;
}

.prod-thumb-info-headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Product name */
.prod-thumb-name {
  font-size: 13px;
  font-weight: bold;
  color: #000;
  font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

/* Product price */
.prod-thumb-price {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

.currency_sign {
  margin-right: 2px;
}

#mc_embed_signup {
  background: #fff;
  padding-top: 20px;
  border-radius: 0.75rem;
  box-shadow: none;
  font-family: 'Shapiro 45 Welter', Arial, sans-serif;
  box-sizing: border-box;
}

#mc_embed_signup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

#mc_embed_signup .asterisk {
  color: #E50C45;
  margin-left: 0.25rem;
}

#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0rem;
  margin-bottom: 1rem;
  font-size: 14px;
  box-sizing: border-box;
  font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

#mc_embed_signup input[type="submit"] {
  background-color: #E50C45;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 13.33px;
  font-weight: bold;
  border-radius: 0rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Shapiro 45 Welter', Arial, sans-serif;
}

#mc_embed_signup input[type="submit"]:hover {
  background-color: #E50C45;
}

.mc-footer {
  text-align: left;
}




/* For mobile view */
@media screen and (max-width: 768px) {
   
    /* Adjust the container layout for mobile */
    .container {
        display: block; /* Make the container display as block (default for mobile) */
        width: 100%;
        padding: 0px;
        box-sizing: border-box;
        margin: 0;
    }

    /* Set column-left to hide on mobile */
    .column-left {
        display: none; /* Hide column-left on mobile */
    }

    /* Make column-right take up full width */
    .column-right {
        width: 100%;        /* Ensure column-right takes full width */
        display: block;     /* Make column-right behave like a block element */
        box-sizing: border-box; /* Ensure padding doesn't affect width */
        padding: 20px;
        margin: 0;
    }

     /* Make column-right image full width */
    .column-right img {
        width: 100%;  
        height: auto; 
        display: block;
    }

    .column-right-wrapper {
        width: 100% !important; /* Override the 66.66% */
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Hide the navigation links */
    .nav-links {
        display: none;       /* Hide the navigation links on mobile */
    }

     .hamburger {
    display: block;
    padding-right: 20px;
  }

  /* Hide column-left if needed */
  .column-left {
    display: none;
  }

  .navbar {
    justify-content: left;
  }
}


