.elementor-3554 .elementor-element.elementor-element-5221f46{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b842f7d *//* --------------------------------------------------
   GLOBAL STYLING
-------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #000;  /* Premium Black */
  color: #e5e5e5;
  line-height: 1.7;
}

/* GOLD COLOR */
:root {
  --gold: #d4af37;
}

/* HEADERS */
h1, h2 {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
  text-align: center;
  padding: 40px 20px 20px;
}

header h1 {
  font-size: 36px;
  margin: 0;
}

.subtitle {
  font-size: 16px;
  color: #fff;
  margin-top: 5px;
  opacity: 0.8;
}

/* --------------------------------------------------
   PRODUCT OVERVIEW SECTION
-------------------------------------------------- */
.product-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.product-overview img {
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.description {
  max-width: 500px;
}

.description h2 {
  margin-top: 0;
}

.description ul {
  padding-left: 20px;
}

.description ul li {
  margin-bottom: 10px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: var(--gold);
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* --------------------------------------------------
   BENEFITS SECTION
-------------------------------------------------- */
.benefits {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.benefits ul {
  padding-left: 20px;
}

.benefits li {
  margin-bottom: 12px;
}

/* --------------------------------------------------
   NUTRITION TABLE
-------------------------------------------------- */
.nutrition {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

thead th {
  background: var(--gold);
  color: #000;
  padding: 12px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

tbody td {
  padding: 12px;
  border-bottom: 1px solid #333;
  font-size: 14px;
  color: #fff;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody td[data-label] {
  font-weight: 500;
}

/* MOBILE RESPONSIVE TABLE */
@media (max-width: 768px) {
  table thead {
    display: none;
  }

  table, table tbody, table tr, table td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 15px;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 8px;
  }

  table td {
    display: flex;
    justify-content: space-between;
  }

  table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--gold);
  }
}

/* --------------------------------------------------
   ABOUT US
-------------------------------------------------- */
.about-us {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  text-align: center;
  padding: 20px 0;
  color: #999;
  font-size: 14px;
  border-top: 1px solid #222;
}/* End custom CSS */