@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

:root {
  --main-color: #B3884A;
  --dark: #050505;
  --navy: #0f172a;
  --white: #ffffff;
  --muted: #64748b;
  --footer-dark: #1e1e1e;
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.5rem;
  background: #050505;
}

html::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 5rem;
}

body {
  background: #050505;
  color: var(--white);
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  width: calc(100% - 7rem);
  top: 1.2rem;
  left: 3.5rem;
  right: 3.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8%;
  background: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.logo .bx {
  font-size: 26px;
  color: var(--main-color);
}

.navbar {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}

.navbar li {
  position: relative;
}

.navbar a {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.navbar a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: -6px;
  left: 0;
  transition: 0.3s;
}

.navbar a:hover::after,
.navbar .home-active::after {
  width: 100%;
}

.navbar .btn {
  border: none;
  background: var(--main-color);
  color: #ffffff;
  border-radius: 0.55rem;
  padding: 0.7rem 1.6rem;
  box-shadow: 0 8px 20px rgba(179, 136, 74, 0.25);
  cursor: pointer;
}

.navbar .btn a {
  color: #ffffff;
  font-weight: 800;
}

.navbar .btn a::after {
  display: none;
}

#menu-icon {
  font-size: 28px;
  cursor: pointer;
  color: #0f172a;
  display: none;
}

/* Checkout Page */
.checkout-main {
  min-height: 100vh;
  padding-top: 150px;
  background:
    radial-gradient(circle at top left, rgba(179, 136, 74, 0.18), transparent 30%),
    linear-gradient(135deg, #020617 0%, #050505 55%, #0f172a 100%);
}

.checkout-hero {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 2.2rem;
}

.checkout-label {
  display: inline-flex;
  background: rgba(179, 136, 74, 0.14);
  color: #f5d7a4;
  border: 1px solid rgba(179, 136, 74, 0.35);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  margin-bottom: 1rem;
}

.checkout-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1rem;
}

.checkout-hero p {
  color: #cbd5e1;
  max-width: 850px;
  line-height: 1.8;
  font-weight: 500;
}

.checkout-container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 4rem;
  padding: 0;
  border: none;
  background: transparent;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 1.5rem;
  align-items: start;
}

.checkout-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.checkout-form-card {
  padding: 2rem;
}

.checkout-summary-card {
  padding: 1.6rem;
  position: sticky;
  top: 135px;
}

.checkout-form-card h2,
.checkout-summary-card h2 {
  color: #0f172a;
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.checkout-muted {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #dbe3ef;
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  outline: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--main-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(179, 136, 74, 0.14);
}

.checkout-alert {
  display: none;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  font-weight: 700;
  margin: 1rem 0;
}

.checkout-alert.show {
  display: block;
}

.whatsapp-order-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.26);
  transition: 0.2s;
}

.whatsapp-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.36);
}

.whatsapp-order-btn i {
  font-size: 1.35rem;
}

.checkout-small-note {
  text-align: center;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.summary-top {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1rem;
}

.summary-label {
  display: inline-block;
  color: var(--main-color);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.summary-price,
.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.summary-price strong,
.summary-line strong {
  color: #0f172a;
}

.summary-total {
  border-bottom: none;
  background: #0f172a;
  color: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 0.8rem;
}

.summary-total strong {
  color: #f5d7a4;
  font-size: 1.3rem;
}

.next-steps {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e2e8f0;
}

.next-steps h3 {
  color: #0f172a;
  margin-bottom: 1rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.step-item span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(179, 136, 74, 0.14);
  color: #8a6128;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.step-item p {
  color: #64748b;
  line-height: 1.5;
}

.trust-box {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.trust-box div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  padding: 0.8rem;
  color: #0f172a;
  font-weight: 800;
}

.trust-box i {
  color: var(--main-color);
  font-size: 1.25rem;
}

/* Footer */
footer {
  width: 100%;
  padding: 50px 100px;
  background: var(--footer-dark);
  box-shadow: inset 0 1.5rem rgba(0, 0, 0, 0.2);
}

.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.container-footer .sec {
  margin: 20px 0;
  padding: 20px;
  min-width: 220px;
}

.container-footer .sec h2 {
  position: relative;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.container-footer .sec h2::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--main-color);
}

.container-footer p,
.container-footer li,
.container-footer a,
.container-footer span {
  color: #ffffff;
  line-height: 1.8;
}

.container-footer a:hover {
  color: var(--main-color);
}

.copyright {
  padding: 20px;
  text-align: center;
  color: #ffffff;
  background: var(--footer-dark);
}

/* Tablet */
@media (max-width: 991px) {
  header {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    padding: 16px 4%;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: relative;
    top: auto;
  }

  footer {
    padding: 40px 5%;
  }
}

/* Mobile */
@media (max-width: 774px) {
  #menu-icon {
    display: initial;
  }

  .navbar {
    position: absolute;
    top: -600px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    row-gap: 1.4rem;
    padding: 24px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    transition: 0.25s;
  }

  .navbar.active {
    top: 100%;
  }

  .navbar a {
    color: #0f172a;
  }

  .navbar a::after {
    display: none;
  }

  .checkout-main {
    padding-top: 130px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 500px) {
  header {
    width: calc(100% - 1rem);
    left: 0.5rem;
    right: 0.5rem;
  }

  .checkout-hero,
  .checkout-container {
    width: 92%;
  }

  .checkout-form-card,
  .checkout-summary-card {
    padding: 1.2rem;
    border-radius: 1.1rem;
  }

  .container-footer {
    flex-direction: column;
  }

  .container-footer .sec {
    width: 100%;
    padding: 10px 0;
  }
}
/* Better checkout footer */
footer {
  background: linear-gradient(135deg, #111827 0%, #1e1e1e 100%);
  border-top: 1px solid rgba(179, 136, 74, 0.25);
}

.container-footer {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.container-footer .sec {
  padding: 0;
  margin: 0;
}

.container-footer .sec h2 {
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
}

.container-footer p,
.container-footer li,
.container-footer a,
.container-footer span {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.container-footer a:hover {
  color: #f5d7a4;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

@media (max-width: 991px) {
  .container-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container-footer {
    grid-template-columns: 1fr;
  }
}

.payment-info-box {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(179, 136, 74, 0.12);
  border: 1px solid rgba(179, 136, 74, 0.28);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1.2rem 0 1.5rem;
}

.payment-info-box i {
  color: #B3884A;
  font-size: 1.4rem;
  margin-top: 0.15rem;
}

.payment-info-box strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.payment-info-box p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9rem;
}

.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.gmail-order-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #B3884A, #8a6128);
  color: #ffffff;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 16px 35px rgba(179, 136, 74, 0.25);
  transition: 0.2s;
}

.gmail-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(179, 136, 74, 0.35);
}

.gmail-order-btn i {
  font-size: 1.35rem;
}

.whatsapp-order-btn:disabled,
.gmail-order-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .checkout-actions {
    grid-template-columns: 1fr;
  }
}

/* Balanced checkout header: Logo | centered nav | Trial button */
.checkout-page header {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  column-gap: clamp(3rem, 6vw, 7rem) !important;
  padding-left: 7% !important;
  padding-right: 7% !important;
}

.checkout-page .logo {
  margin-right: 0 !important;
  flex-shrink: 0 !important;
}

.checkout-page .navbar {
  display: grid !important;
  grid-template-columns: 1fr repeat(5, auto) 1fr !important;
  align-items: center !important;
  column-gap: clamp(2rem, 3vw, 3.2rem) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Center only Home / About / Pricing / Blog / Contact */
.checkout-page .navbar li:nth-child(1) {
  grid-column: 2 !important;
}

.checkout-page .navbar li:nth-child(2) {
  grid-column: 3 !important;
}

.checkout-page .navbar li:nth-child(3) {
  grid-column: 4 !important;
}

.checkout-page .navbar li:nth-child(4) {
  grid-column: 5 !important;
}

.checkout-page .navbar li:nth-child(5) {
  grid-column: 6 !important;
}

/* Put Trial button on the right */
.checkout-page .navbar li:nth-child(6) {
  grid-column: 7 !important;
  justify-self: end !important;
}

.checkout-page .navbar .btn {
  min-width: 135px !important;
  height: 52px !important;
  padding: 0 1.35rem !important;
  border-radius: 0.65rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.checkout-page .navbar .btn a {
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* Mobile: keep checkout menu working normally */
@media (max-width: 774px) {
  .checkout-page header {
    display: flex !important;
    justify-content: space-between !important;
    column-gap: 0 !important;
  }

  .checkout-page .navbar {
    display: flex !important;
    grid-template-columns: none !important;
    width: 100% !important;
  }

  .checkout-page .navbar li {
    grid-column: auto !important;
    justify-self: auto !important;
  }
}

/* Final balanced checkout header */
.checkout-page header {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  column-gap: clamp(3rem, 6vw, 7rem) !important;
  padding-left: 7% !important;
  padding-right: 7% !important;
}

.checkout-page .logo {
  margin-right: 0 !important;
  flex-shrink: 0 !important;
}

.checkout-page .navbar {
  display: grid !important;
  grid-template-columns: 1fr repeat(5, auto) 1fr auto !important;
  align-items: center !important;
  column-gap: clamp(2rem, 3vw, 3.2rem) !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Center Home / About / Pricing / Blog / Contact */
.checkout-page .navbar li:nth-child(1) {
  grid-column: 2 !important;
}

.checkout-page .navbar li:nth-child(2) {
  grid-column: 3 !important;
}

.checkout-page .navbar li:nth-child(3) {
  grid-column: 4 !important;
}

.checkout-page .navbar li:nth-child(4) {
  grid-column: 5 !important;
}

.checkout-page .navbar li:nth-child(5) {
  grid-column: 6 !important;
}

/* Put Trial button after a flexible space */
.checkout-page .navbar li:nth-child(6) {
  grid-column: 8 !important;
  justify-self: end !important;
}

.checkout-page .navbar .btn {
  min-width: 135px !important;
  height: 52px !important;
  padding: 0 1.35rem !important;
  border-radius: 0.65rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.checkout-page .navbar .btn a {
  white-space: nowrap !important;
  line-height: 1 !important;
}

/* Mobile reset */
@media (max-width: 774px) {
  .checkout-page header {
    display: flex !important;
    justify-content: space-between !important;
    column-gap: 0 !important;
  }

  .checkout-page .navbar {
    display: flex !important;
    grid-template-columns: none !important;
    width: 100% !important;
  }

  .checkout-page .navbar li {
    grid-column: auto !important;
    justify-self: auto !important;
  }
}

/* Checkout footer mobile center fix */
@media (max-width: 768px) {
  footer,
  .site-footer {
    padding: 55px 6% 45px !important;
    text-align: center !important;
  }

  .container-footer,
  .site-footer-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.4rem !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }

  .container-footer .sec,
  .site-footer-col {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .container-footer .sec h2,
  .site-footer-col h2 {
    text-align: center !important;
    display: inline-block !important;
    position: relative !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .container-footer .sec h2::before,
  .container-footer .sec h2::after,
  .site-footer-col h2::before,
  .site-footer-col h2::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .container-footer .sec p,
  .site-footer-col p {
    text-align: center !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .container-footer .sec ul,
  .site-footer-col ul {
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.55rem !important;
  }

  .container-footer .sec ul li,
  .site-footer-col ul li {
    text-align: center !important;
    width: 100% !important;
  }

  .container-footer .sec ul li a,
  .site-footer-col ul li a {
    text-align: center !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .copyright,
  .site-copyright {
    text-align: center !important;
    padding: 18px 6% !important;
  }

  .copyright p,
  .site-copyright p {
    margin: 0 auto !important;
    text-align: center !important;
  }
}