*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --theme-color: #200404;
  --theme-text-color: #fff;
  --primary-font: 'Poppins', sans-serif;
}

html {
  font-family: var(--primary-font);
  font-size: 10px;
  box-sizing: border-box;
}

body {
  /*background-image: url('bg.jpeg');*/
  background: #000;
  background-size: contain;

}

/*Section used for centering process*/
section {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.catimages {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.products {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  gap: 15px;
  position: relative;
}

.products:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(128, 128, 128, 0.4);
}


.prod-img-container {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prodimages {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prod-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--theme-text-color);
  margin: 0;
  font-family: var(--primary-font);
}

.prod-desc {
  font-size: 1.3rem;
  color: var(--theme-text-color);

  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.price {
  color: #000;
  background: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 2.2rem;
  font-weight: 800;
}

.addcart {
  background: var(--theme-text-color);
  padding: 10px 20px;
  color: var(--theme-color);
  font-size: 1.6rem;
  font-weight: 800;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.addcart:hover {
  opacity: 0.9;
}

.cart_container {
  position: fixed;
  bottom: 40px;
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1500;
  background: #f7eb06;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart_container:hover {
  transform: scale(1.1);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.popup table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 25px;
}

.popup th,
.popup td {
  padding: 12px 15px;
  text-align: left;
}

.popup th {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--theme-text-color);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup td {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--theme-text-color);
  font-size: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.popup td:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px 0 0 10px;
}

.popup td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 10px 10px 0;
}

/* Popup content */
.popup-content {
  background-color: var(--theme-color);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 30px;
  border-radius: 24px;
  width: 90%;
  max-width: 550px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--theme-text-color);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.close-btn:hover {
  opacity: 1;
}

.remove-btn {
  background: rgba(255, 0, 0, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 77, 77, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.2rem;
}

.remove-btn:hover {
  background: #ff4d4d;
  color: #fff;
  transform: scale(1.05);
}

.cart-icon {
  font-size: 28px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_count {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: red;
  border-radius: 50%;
  padding: 5px 10px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.addcart {
  background: #fff;
  padding: 5px 10px;
  color: #000;
  border-radius: 5px;
  word-break: break-all;
  white-space: nowrap;
  margin: 2px;
  border: 1px solid #736f6f;
  /* display: none; */
}

.price {
  color: #000;
  font-size: 1.6em;
}

.price label {
  /* width: 400px; */
  display: inline;
  font-size: 1.2em;
  padding: 5px;
  width: 100%;
  color: #4d4d4d;
}

.container {
  width: 100%;
  max-width: 600px;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: var(--theme-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#searchBar {
  width: 90%;
  max-width: 500px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  font-size: 2rem;
  font-family: var(--primary-font);
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--theme-text-color);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

#searchBar:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.remove-btn {
  color: #fff;
  background: #f50707;
  padding: 4px 7px;
  border-radius: 16px;
  border: 1px solid #ccc;
  font-weight: bold;
}

button.accordion {
  width: calc(100% - 40px);
  background-color: rgba(255, 255, 255, 0.03);
  border: none;
  border-radius: 20px;
  outline: none;
  text-align: left;
  padding: 25px 30px;
  font-size: 1.8rem;
  font-family: var(--primary-font);
  font-weight: 800;
  color: var(--theme-text-color);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.accordion div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.accordion h3 {
  font-weight: 800;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button.accordion:after {
  font-family: FontAwesome;
  content: "\f150";
  font-family: "fontawesome";
  font-size: 25px;
  color: var(--theme-text-color);
  transition: transform 0.3s ease;
}

button.accordion.is-open:after {
  content: "\f151";
}

button.accordion:hover,
button.accordion.is-open {
  background-color: var(--theme-text-color);
  color: var(--theme-color);
}

button.accordion:hover:after,
button.accordion.is-open:after {
  color: var(--theme-color);
}

.accordion-content {
  border-left: 1px solid var(--theme-text-color);
  border-right: 1px solid var(--theme-text-color);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
  margin-bottom: 10px;
}


/* footer styling starts here */

.contactUs {
  height: 25vh;
  padding: 20px;


  display: flex;
  justify-content: center;

  color: var(--theme-text-color);
  font-weight: bold;
}

.ftdiv {
  display: flex;
  flex-direction: column;

  gap: 10px;

}

.ftheader {
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.ftelem1,
.ftelem2 {
  font-size: 1.4rem;

  display: flex;
  align-items: center;
}

.ftelem1 span,
.ftelem2 span {
  margin-right: 10px;
}

#phoneNumber,
#OurAddress {
  text-align: center;
}

body {
  /*background-image: url('bg.jpeg');*/
  background: var(--theme-color);
  background-size: contain;
  color: var(--theme-text-color);
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color) url('bg.png') no-repeat center center;
  background-size: cover;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#splash-logo {
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
  border-radius: 10px;
}