/* ======= Global Styles ======= */
:root {
  --primary-color: #00c389;
  --bg-color: #000;
  --border-color: #08331f;
  --font-family: 'Times New Roman', Times, serif;
  --transition-speed: 0.3s;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
}


body {
  background: var(--bg-color);
  color: var(--primary-color);
  font-family: var(--font-family);
  text-align: center;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  max-width: 100%;
}



/* ======= Text Container ======= */
.text-container {
  width: 60vw;
  max-width: 600px;
  min-width: 250px;
  margin: auto;
}

.brand-logo {
  max-width: 200px;
  transition: opacity var(--transition-speed) ease-in-out;
}

.brand-logo:hover {
  opacity: 0.7;
}

/* ======= Ellipse Navigation ======= */
.ellipse-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 50vw;
  padding: 10px;
}

/* ======= Navigation Icons ======= */
.nav-icon {
  position: relative;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform var(--transition-speed) ease-in-out, text-shadow var(--transition-speed) ease-in-out;
}

.nav-icon img {
  width: 35px;
  height: auto;
  margin-bottom: 5px;
}

.nav-icon:hover {
  text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
  transform: scale(1.2);
}



/* ======= Product Template ======= */
.product-template {
  overflow: visible;
  align-items: center;
  /* or stretch, depending on layout */
  margin: 30px auto;
  width: 100vw;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  /* Stack elements */
  border: 1px solid #08331f;
  text-align: left;
  /* Ensures text is centered */
  padding: 20px;
  background-color: #080e0c;
  overflow-x: hidden;
  border-bottom:
solid 3px #03241a;
  border-right:
solid 3px #03241a;
  border-top:
solid 3px #00c389;
  border-left:
solid 3px #00c389;
  box-shadow: 2px 2px 0px #030100;
}




.product-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-bottom: 1px solid var(--border-color);
}



/* ======= Footer ======= */
footer {
  margin-top: 40px;
  font-size: 12px;
  color: var(--primary-color);
}

/* ======= Responsive Styles ======= */
@media (max-width: 768px) {
  .ellipse-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 50vw;
    padding: 5px;
  }

  .nav-icon {
    position: relative;
    text-align: center;
  }
}

.product-template {
  overflow: visible;
  align-items: center;
  /* or stretch, depending on layout */
  margin: 30px auto;
  width: 80vw;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  /* Stack elements */
  border: 1px solid #08331f;
  text-align: left;
  /* Ensures text is centered */
  padding: 20px;

  overflow-x: hidden;
  border-bottom:
solid 3px #03241a;
  border-right:
solid 3px #03241a;
  border-top:
solid 3px #00c389;
  border-left:
solid 3px #00c389;
  box-shadow: 2px 2px 0px #030100;
}



.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* space between form elements */
}

.contact-form input,
.contact-form textarea {
  background-color: #a2ffe3;
  /* light grey */
  color: #000000;
  /* text color inside box */
  border: 1px solid #00c389;
  padding: 0.75rem;
  border-radius: 0px;
  width: 50vw;
  box-sizing: border-box;
  max-width: 500px;
}

.contact-form button {
  background-color: #000;
  color: #00c389;
  border: 1px solid #00c389;
  padding: 0.75rem;
  border-radius: 0px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  /* makes it feel clickable */
  transition: background-color 0.3s, color 0.3s;
  /* smooth fade */
}

.contact-form button:hover {
  background-color: #00c389;
  color: #000;
}


.image-viewer {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail-row {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.thumbnail-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #08331f;
  transition: 0.3s;
}

.thumbnail-row img:hover {
  border-color: #00c389;
  transform: scale(1.5);
}

.product-image {
  max-width: 100%;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-image.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}


.image-viewer img {
  max-width: 100%;
}

.image-thumb {
  width: 100%;
  display: flex;
  justify-content: center;
}

.image-thumb img {
  height: 60px;
  border: 1px solid #08331f;
  padding: 5px;
  opacity: 0.6;
}

.active {
  opacity: 1 !important;
  border: 1px solid #00c389;
}

.size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  background-color: transparent;
  color: #00c389;
  font-weight: normal;
  border: 2px solid #08331f; /* updated this line */
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.size-btn:hover {
  background-color: #08331f;
}

.buynow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px; /* Enough space around the text */
  text-decoration: none;
  background-color: transparent;
  color: #00c389;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid #08331f;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.buynow-btn:hover {
  background-color: #08331f;
}
