* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f7f3;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 96%;
  max-width: 1600px;
  margin: auto;
}

.navbar {
  background: rgba(248,247,243,0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e7e2d8;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-cta {
  background: #111;
  color: white !important;
  padding: 10px 18px;
  border-radius: 100px;
  margin-left: 6px;
  font-weight: 700;
}

.btn {
  background: #111;
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  display: inline-block;
  font-weight: 700;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.secondary-btn {
  border: 1px solid #111;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #8a6f3d;
  margin-bottom: 18px;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid,
.our-story-grid,
.heavenly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1,
.section-title,
.our-story-content h2,
.heavenly h2 {
  font-family: 'Playfair Display', serif;
}

.hero-text h1 {
  font-size: 4.4rem;
  line-height: 1.02;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.12rem;
  color: #555;
  max-width: 540px;
  margin-bottom: 35px;
}

.hero-buttons,
.story-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image img,
.our-story-image img {
  border-radius: 28px;
  object-fit: cover;
  height: 650px;
}

.promise-strip {
  padding: 30px 0;
  border-top: 1px solid #e7e2d8;
  border-bottom: 1px solid #e7e2d8;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.trust {
  padding: 75px 0;
}

.trust-grid,
.collection-grid,
.drop-grid,
.packages-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.trust-grid {
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}

.collection-grid,
.drop-grid,
.packages-grid {
  grid-template-columns: repeat(3,1fr);
}

.gallery-grid {
  grid-template-columns: repeat(4,1fr);
}

.trust-card,
.collection-card,
.package-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #ece6da;
}

.collection-card {
  padding: 0;
  overflow: hidden;
}

.collection-card img {
  height: 420px;
  object-fit: cover;
}

.collection-info,
.drop-info {
  padding: 28px;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
  max-width: 680px;
}

.our-story-section {
  padding: 110px 0;
}

.our-story-content h2 {
  font-size: 3.2rem;
  margin-bottom: 28px;
}

.our-story-content p {
  color: #555;
  margin-bottom: 20px;
}

.limited-drop {
  background: #111;
  color: white;
  border-radius: 40px;
  padding: 85px;
  margin: 70px auto;
}

.drop-card {
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
}

.drop-card img {
  height: 380px;
  object-fit: cover;
}

.drop-info p {
  color: #cfcfcf;
}

.drop-card .btn {
  background: white;
  color: #111;
}

.heavenly {
  background: #f0eadf;
  border-radius: 40px;
  padding: 85px;
  margin: 90px auto;
}

.heavenly-badge {
  display: inline-block;
  background: #111;
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.package-card ul {
  margin: 18px 0 24px;
  padding-left: 20px;
}

.gallery-grid img {
  border-radius: 20px;
  height: 320px;
  object-fit: cover;
}

footer {
  background: #111;
  color: white;
  padding: 70px 0 40px;
  margin-top: 80px;
}

.footer-grid {
  grid-template-columns: repeat(4,1fr);
}

.footer-column a,
.footer-column p {
  color: #aaa;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 25px;
  color: #888;
}

@media(max-width:980px){

  .hero-grid,
  .our-story-grid,
  .collection-grid,
  .drop-grid,
  .heavenly-grid,
  .packages-grid,
  .gallery-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns:1fr;
  }

  .nav-links {
    display:none;
  }

  .hero-text h1 {
    font-size:3rem;
  }

  .section-title,
  .our-story-content h2,
  .heavenly h2 {
    font-size:2.3rem;
  }

  .limited-drop,
  .heavenly {
    padding:50px 28px;
  }

  .hero-image img,
  .our-story-image img {
    height:450px;
  }

  .collection-card img,
  .drop-card img,
  .gallery-grid img,
  .heavenly img {
    height:auto;
  }

}:root {
  --black: #0a0a0a;
  --white: #f8f6f1;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gray: #1a1a1a;
  --gray-mid: #2a2a2a;
  --gray-light: #888;
  --cream: #f0ece3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 8px 20px;
  font-weight: 600 !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  margin-bottom: 40px;
  animation: fadeUp 1s ease forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 50px;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 14px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--white);
  padding: 14px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gray-light);
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 16px 0;
  background: var(--gray);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 40px;
}

.marquee-track .dot {
  color: var(--gray-light);
  padding: 0;
}

/* SECTIONS */
section {
  padding: 100px 40px;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* COLLECTIONS */
#collections {
  background: var(--black);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.product-card {
  background: var(--gray);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--gray-mid);
  position: relative;
}

.product-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.product-img-placeholder .logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: rgba(201,168,76,0.3);
  letter-spacing: 0.1em;
}

.product-info {
  padding: 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.product-verse {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.7rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.product-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.product-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* HEAVENLY GOODS */
#heavenly {
  background: var(--gray);
}

.heavenly-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.heavenly-text p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.custom-products {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.custom-item {
  background: var(--gray-mid);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 2px solid transparent;
  transition: all 0.3s;
}

.custom-item:hover {
  border-left-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.custom-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.custom-item-price {
  color: var(--gold);
  font-weight: 600;
}

/* PACKAGES */
#packages {
  background: var(--black);
}

.packages-tabs {
  display: flex;
  gap: 2px;
  margin: 40px 0 30px;
}

.tab-btn {
  background: var(--gray);
  border: none;
  color: var(--gray-light);
  padding: 12px 28px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}

.package-card {
  background: var(--gray);
  padding: 32px 24px;
  position: relative;
  border-top: 2px solid transparent;
  transition: all 0.3s;
}

.package-card:hover {
  border-top-color: var(--gold);
}

.package-card.featured {
  border-top-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.package-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 700;
}

.package-qty {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.package-savings {
  font-size: 0.65rem;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.package-savings s {
  color: rgba(136,136,136,0.5);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

/* CUSTOMIZATION FORM */
#customize {
  background: var(--gray);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-mid);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--gray-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-upload {
  border: 1px dashed rgba(201,168,76,0.3);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.form-upload:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

.form-upload p {
  font-size: 0.7rem;
  color: var(--gray-light);
  margin-top: 8px;
}

.form-upload .upload-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
}

.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 48px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  margin-top: 10px;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ABOUT / MISSION */
#mission {
  background: var(--black);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--gold);
  padding-left: 30px;
  border-left: 2px solid var(--gold);
}

.mission-text p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--gray-light);
  margin-bottom: 20px;
}

.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.pillar-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

/* FOOTER */
footer {
  background: var(--gray);
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.65rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--gold);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--gray);
  max-width: 500px;
  width: 100%;
  padding: 48px;
  border-top: 2px solid var(--gold);
  position: relative;
  animation: fadeUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--white);
}

.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.modal-price {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.modal-desc {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-options select {
  background: var(--gray-mid);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  outline: none;
  -webkit-appearance: none;
}

.modal-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
}

.modal-btn:hover {
  background: var(--gold-light);
}

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 0.1em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f7f3;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 96%;
  max-width: 1600px;
  margin: auto;
}

.navbar {
  background: rgba(248,247,243,0.96);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e7e2d8;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-cta {
  background: #111;
  color: white !important;
  padding: 10px 18px;
  border-radius: 100px;
  margin-left: 6px;
  font-weight: 700;
}

.btn {
  background: #111;
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  display: inline-block;
  font-weight: 700;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.secondary-btn {
  border: 1px solid #111;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #8a6f3d;
  margin-bottom: 18px;
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid,
.our-story-grid,
.heavenly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1,
.section-title,
.our-story-content h2,
.heavenly h2 {
  font-family: 'Playfair Display', serif;
}

.hero-text h1 {
  font-size: 4.4rem;
  line-height: 1.02;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.12rem;
  color: #555;
  max-width: 540px;
  margin-bottom: 35px;
}

.hero-buttons,
.story-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-image img,
.our-story-image img {
  border-radius: 28px;
  object-fit: cover;
  height: 650px;
}

.promise-strip {
  padding: 30px 0;
  border-top: 1px solid #e7e2d8;
  border-bottom: 1px solid #e7e2d8;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
}

.trust {
  padding: 75px 0;
}

.trust-grid,
.collection-grid,
.drop-grid,
.packages-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.trust-grid {
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}

.collection-grid,
.drop-grid,
.packages-grid {
  grid-template-columns: repeat(3,1fr);
}

.gallery-grid {
  grid-template-columns: repeat(4,1fr);
}

.trust-card,
.collection-card,
.package-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid #ece6da;
}

.collection-card {
  padding: 0;
  overflow: hidden;
}

.collection-card img {
  height: 420px;
  object-fit: cover;
}

.collection-info,
.drop-info {
  padding: 28px;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
  max-width: 680px;
}

.our-story-section {
  padding: 110px 0;
}

.our-story-content h2 {
  font-size: 3.2rem;
  margin-bottom: 28px;
}

.our-story-content p {
  color: #555;
  margin-bottom: 20px;
}

.limited-drop {
  background: #111;
  color: white;
  border-radius: 40px;
  padding: 85px;
  margin: 70px auto;
}

.drop-card {
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
}

.drop-card img {
  height: 380px;
  object-fit: cover;
}

.drop-info p {
  color: #cfcfcf;
}

.drop-card .btn {
  background: white;
  color: #111;
}

.heavenly {
  background: #f0eadf;
  border-radius: 40px;
  padding: 85px;
  margin: 90px auto;
}

.heavenly-badge {
  display: inline-block;
  background: #111;
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.package-card ul {
  margin: 18px 0 24px;
  padding-left: 20px;
}

.gallery-grid img {
  border-radius: 20px;
  height: 320px;
  object-fit: cover;
}

footer {
  background: #111;
  color: white;
  padding: 70px 0 40px;
  margin-top: 80px;
}

.footer-grid {
  grid-template-columns: repeat(4,1fr);
}

.footer-column a,
.footer-column p {
  color: #aaa;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 25px;
  color: #888;
}

@media(max-width:980px){

  .hero-grid,
  .our-story-grid,
  .collection-grid,
  .drop-grid,
  .heavenly-grid,
  .packages-grid,
  .gallery-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns:1fr;
  }

  .nav-links {
    display:none;
  }

  .hero-text h1 {
    font-size:3rem;
  }

  .section-title,
  .our-story-content h2,
  .heavenly h2 {
    font-size:2.3rem;
  }

  .limited-drop,
  .heavenly {
    padding:50px 28px;
  }

  .hero-image img,
  .our-story-image img {
    height:450px;
  }

  .collection-card img,
  .drop-card img,
  .gallery-grid img,
  .heavenly img {
    height:auto;
  }

}
/* PREMIUM COLOR UPDATE */

body {
  background: #f3efe8;
}

.navbar {
  background: rgba(15,15,15,0.94);
  border-bottom: 1px solid #2b2b2b;
}

.logo,
.nav-links a {
  color: white;
}

.logo-subtitle {
  color: #c7b08a;
}

.hero {
  background: #111;
  color: white;
}

.hero-text p {
  color: #cfcfcf;
}

.secondary-btn {
  border: 1px solid #c7b08a;
  color: #c7b08a;
}

.promise-strip {
  background: #0f0f0f;
  color: #d8c3a5;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
}

.limited-drop {
  background: #0a0a0a;
}

.drop-card {
  background: #151515;
  border: 1px solid #242424;
}

.heavenly {
  background: #e9dfd2;
}

.btn {
  background: #111;
}

.nav-cta {
  background: #c7b08a;
  color: #111 !important;
}

footer {
  background: #0d0d0d;
}
.ttp-hero{
    min-height:100vh;
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.88) 0%,
        rgba(12,6,7,0.72) 38%,
        rgba(12,6,7,0.15) 72%
    ),

    url(https://truetopromise.com/wp-content/uploads/2026/05/55566e19-ca12-4587-9d79-1e6586ff2437.png);

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    color:white;
}

.ttp-navbar {
  height: 92px;
  padding: 0 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 5;
}

.ttp-logo {
  font-weight: 800;
  letter-spacing: 6px;
  font-size: 1.15rem;
}

.ttp-logo span {
  display: block;
  color: #c7a96b;
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-top: 6px;
}

.ttp-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.ttp-menu a {
  color: #fff;
  text-decoration: none;
}

.ttp-shop-btn {
  background: #c7a96b;
  color: #111 !important;
  padding: 14px 24px;
  border-radius: 100px;
}

.ttp-hero-content {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 0 4%;
  position: relative;
  z-index: 3;
}

.ttp-hero-text {
  max-width: 520px;
}

.ttp-eyebrow {
  color: #c7a96b;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.ttp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 28px;
  color: #fff;
}

.ttp-description {
  color: #e6e0d6;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 34px;
}

.ttp-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 260px;
}

.ttp-primary,
.ttp-secondary {
  text-align: center;
  padding: 15px 24px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.ttp-primary {
  background: #c7a96b;
  color: #111;
}

.ttp-secondary {
  border: 1px solid #c7a96b;
  color: #fff;
}

.ttp-promise-line {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(199,169,107,0.35);
  color: #c7a96b;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 800;
}

.ttp-promise-line span {
  margin-right: 10px;
}

.ttp-benefits {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 130px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 6%;
  z-index: 4;
}

.ttp-benefits div {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 28px;
}

.ttp-benefits div:last-child {
  border-right: none;
}

.ttp-benefits span {
  color: #c7a96b;
  font-size: 1.8rem;
  grid-row: span 2;
}

.ttp-benefits h3 {
  font-size: 0.78rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.ttp-benefits p {
  color: #d7d1c7;
  font-size: 0.85rem;
  line-height: 1.45;
}

@media(max-width: 980px) {
  .ttp-hero {
    background-position: center;
  }

  .ttp-menu {
    display: none;
  }

  .ttp-hero-content {
    padding: 70px 7% 180px;
    align-items: flex-start;
  }

  .ttp-hero h1 {
    font-size: 3.8rem;
  }

  .ttp-benefits {
    position: relative;
    grid-template-columns: 1fr;
  }

  .ttp-benefits div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0;
  }
}
@media only screen and (max-width: 980px) {

  .ttp-hero {
    background-image: none !important;
    background: #050505 !important;
    min-height: auto !important;
  }

  .ttp-hero::before {
    content: "" !important;
    display: block !important;
    width: 100% !important;
    height: 520px !important;
    background-image: linear-gradient(
      to bottom,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.45)
    ),
    url("https://truetopromise.com/wp-content/uploads/2026/05/55566e19-ca12-4587-9d79-1e6586ff2437.jpg") !important;

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .ttp-hero-content {
    min-height: auto !important;
    padding: 45px 28px 55px !important;
    background: #050505 !important;
  }

  .ttp-hero-text {
    max-width: 100% !important;
  }

  .ttp-hero h1 {
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .ttp-description {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .ttp-buttons {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .ttp-buttons a {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
  }

  .ttp-benefits {
    position: relative !important;
    bottom: auto !important;
    background: #050505 !important;
    grid-template-columns: 1fr !important;
    padding: 30px 28px !important;
  }
}
@media only screen and (max-width: 980px) {

  .ttp-navbar {
    display: flex !important;
    position: relative !important;
    z-index: 999 !important;
    height: auto !important;
    padding: 22px 24px !important;
    background: #050505 !important;
  }

  .ttp-logo {
    display: block !important;
    color: white !important;
  }

  .ttp-logo span {
    display: block !important;
    color: #c7a96b !important;
  }

  .ttp-menu {
    display: none !important;
  }
}
@media only screen and (max-width: 980px) {

  .ttp-hero {
    display: flex !important;
    flex-direction: column !important;
  }

  .ttp-navbar {
    order: 0 !important;
    display: flex !important;
    position: relative !important;
    z-index: 9999 !important;
    background: #050505 !important;
    padding: 24px 28px !important;
  }

  .ttp-logo {
    display: block !important;
    color: #ffffff !important;
  }

  .ttp-logo div {
    display: block !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    letter-spacing: 5px !important;
  }

  .ttp-logo span {
    display: block !important;
    color: #c7a96b !important;
    font-size: 0.7rem !important;
    letter-spacing: 2px !important;
    margin-top: 6px !important;
  }

  .ttp-hero::before {
    order: 1 !important;
  }

  .ttp-hero-content {
    order: 2 !important;
  }

  .ttp-benefits {
    order: 3 !important;
  }

  .ttp-menu {
    display: none !important;
  }
}
/* FIX GLOBAL SPACING */
.section,
.social-proof,
.testimonials-section,
.limited-drop,
.heavenly,
.our-story-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* FIX EMPTY GAPS */
.social-proof {
  background: #050505 !important;
}

.testimonials-section {
  background: #071a1d !important;
}

/* SOCIAL PROOF VISIBILITY */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.proof-card {
  background: #101010;
  border: 1px solid rgba(203, 171, 105, 0.35);
  border-radius: 22px;
  padding: 32px 26px;
}

.proof-card h3 {
  color: #ffffff !important;
  font-size: 22px;
  margin-bottom: 14px;
}

.proof-card p {
  color: #d6d6d6 !important;
  font-size: 17px;
  line-height: 1.6;
}

/* TESTIMONIALS VISIBILITY */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.testimonial-card {
  background: #101010;
  border: 1px solid rgba(203, 171, 105, 0.35);
  border-radius: 22px;
  padding: 34px 28px;
}

.testimonial-card p {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 1.6;
}

.testimonial-card span {
  color: #d3b36f !important;
  font-size: 18px;
  letter-spacing: 3px;
  display: block;
  margin-top: 20px;
}

/* MOBILE FIX */
@media only screen and (max-width: 768px) {

  .section,
  .social-proof,
  .testimonials-section,
  .limited-drop,
  .heavenly,
  .our-story-section {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .proof-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .proof-card,
  .testimonial-card {
    padding: 28px 24px;
  }

  .proof-card h3 {
    font-size: 20px;
  }

  .proof-card p,
  .testimonial-card p {
    font-size: 17px;
  }
}/* SOCIAL ICONS */

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: #101010;
  border: 1px solid rgba(203, 171, 105, 0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 18px;

  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d3b36f;
  color: #050505;
  transform: translateY(-3px);
}

.social-icons a i {
  line-height: 1;
}

/* MOBILE */

@media only screen and (max-width: 768px) {

  .social-icons {
    justify-content: flex-start;
    gap: 14px;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

}
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.footer-social-links a {
  color: #d3b36f !important;
  text-decoration: none !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: block !important;
}

.footer-social-links a:hover {
  color: #ffffff !important;
}
.featured-products-section {
  background: #050505;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.featured-card {
  background: #111;
  border-radius: 28px;
  overflow: hidden;
  transition: 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
}

.featured-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featured-info {
  padding: 30px;
}

.featured-info h3 {
  font-size: 28px;
  margin-bottom: 14px;
  color: #fff;
}

.featured-info p {
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media only screen and (max-width: 980px) {

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-card img {
    height: auto;
  }

}
/* MOBILE FIX — FEATURED PRODUCTS */
@media only screen and (max-width: 980px) {

  .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .featured-card {
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .featured-card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
  }

  .featured-info {
    padding: 22px !important;
  }

  .featured-info h3 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .featured-info p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }

  .featured-info .btn {
    width: 100% !important;
    text-align: center !important;
  }

}
/* =========================
FIX CUSTOM CARDS HEIGHT
========================= */

.custom-grid {
  align-items: stretch !important;
}

.custom-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 100% !important;
}

/* =========================
SMALLER HERO LOGO
========================= */

.hero-logo img {
  width: 110px !important;
  max-width: 40% !important;
  display: block !important;
  margin: 0 auto 24px auto !important;
}

/* =========================
REMOVE EXTRA HERO SPACE
========================= */

.hero-section {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

/* =========================
MOBILE FIX — FEATURED PRODUCTS
========================= */

@media only screen and (max-width: 980px) {

  .featured-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .featured-card {
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  .featured-card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
  }

  .featured-info {
    padding: 22px !important;
  }

  .featured-info h3 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .featured-info p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }

  .featured-info .btn {
    width: 100% !important;
    text-align: center !important;
  }

}
/* FIX REAL TTP LOGO SIZE */

.ttp-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
}

.footer-logo img {
  width: 75px !important;
  max-width: 75px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* REDUCE NAV / HERO EXTRA SPACE */

.ttp-navbar {
  padding-top: 24px !important;
  padding-bottom: 20px !important;
}

.ttp-hero {
  padding-top: 0 !important;
}

/* FIX FEATURED PRODUCTS GAP BEFORE SUMMER COLLECTION */

.featured-products-section {
  padding-bottom: 60px !important;
  margin-bottom: 0 !important;
}

#summer-collection {
  padding-top: 60px !important;
  margin-top: 0 !important;
}

/* MOBILE LOGO FIX */

@media only screen and (max-width: 768px) {

  .ttp-logo img {
    width: 120px !important;
    max-width: 120px !important;
  }

  .footer-logo img {
    width: 65px !important;
    max-width: 65px !important;
  }

  .ttp-navbar {
    padding-top: 18px !important;
    padding-bottom: 16px !important;
  }

}
/* REVIEWS FIX */
.testimonials-grid{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:30px !important;
  align-items:stretch !important;
}

.testimonial-card{
  padding:35px 28px !important;
  border-radius:28px !important;
  background:rgba(20,20,20,.82) !important;
  border:1px solid rgba(255,255,255,.06) !important;
  backdrop-filter:blur(10px) !important;
}

.testimonial-card p{
  font-size:17px !important;
  line-height:1.8 !important;
  color:#f5f5f5 !important;
  margin-bottom:24px !important;
}

.testimonial-card span{
  color:#f0d36c !important;
  font-size:18px !important;
  letter-spacing:4px !important;
}

/* MOBILE */
@media only screen and (max-width:768px){

  .testimonials-grid{
    grid-template-columns:1fr !important;
    gap:22px !important;
  }

  .testimonial-card{
    padding:28px 24px !important;
  }

  .testimonial-card p{
    font-size:16px !important;
    line-height:1.7 !important;
  }
}
/* FORCE CLEAN SPACING BETWEEN MAIN SECTIONS */

.promise-collection-section {
  padding-top: 40px !important;
  padding-bottom: 55px !important;
  margin-top: 0 !important;
  background: #050505 !important;
}

.social-proof {
  padding-top: 55px !important;
  padding-bottom: 45px !important;
  margin: 0 !important;
  background: #050505 !important;
}

.featured-products-section {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
  margin: 0 !important;
  background: #050505 !important;
}

#summer-collection {
  padding-top: 45px !important;
  margin-top: 0 !important;
  background: #050505 !important;
}

/* FEATURED CARD ALIGNMENT */
.featured-grid {
  align-items: stretch !important;
}

.featured-card {
  height: auto !important;
  min-height: 100% !important;
}

/* REVIEWS FIX */
.testimonials-section .container {
  max-width: 1200px !important;
}

.testimonials-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

.testimonial-card {
  width: auto !important;
  max-width: none !important;
  padding: 35px 28px !important;
}

.testimonial-card p {
  font-size: 17px !important;
  line-height: 1.7 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

/* MOBILE */
@media only screen and (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .promise-collection-section,
  .social-proof,
  .featured-products-section,
  #summer-collection {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
/* ===== FINAL FORCE FIX — REVIEWS DESKTOP + MOBILE ===== */

.testimonials-section {
  width: 100% !important;
  overflow: hidden !important;
}

.testimonials-section .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.testimonials-section .testimonials-grid {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 28px !important;
  width: 100% !important;
}

.testimonials-section .testimonial-card {
  flex: 1 1 0 !important;
  width: 33.333% !important;
  max-width: 360px !important;
  min-width: 0 !important;
  padding: 34px 28px !important;
  border-radius: 24px !important;
  background: rgba(15, 15, 15, 0.88) !important;
}

.testimonials-section .testimonial-card p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: #ffffff !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
  text-align: left !important;
}

.testimonials-section .testimonial-card span {
  display: block !important;
  margin-top: 22px !important;
  color: #d3b36f !important;
  font-size: 18px !important;
  letter-spacing: 3px !important;
}

/* MOBILE */
@media only screen and (max-width: 768px) {

  .testimonials-section .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .testimonials-section .testimonials-grid {
    flex-direction: column !important;
  }

  .testimonials-section .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* FINAL CLEANUP FIXES */

/* 1. Remove duplicated tagline under logo */
.ttp-navbar .ttp-logo span,
.ttp-logo span {
  display: none !important;
}

/* 2. Smooth section spacing */
.promise-collection-section,
.social-proof,
.featured-products-section,
#summer-collection,
#packages,
.testimonials-section {
  background: #050505 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.promise-collection-section {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.featured-products-section {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

#summer-collection {
  padding-top: 45px !important;
  padding-bottom: 60px !important;
}

.heavenly {
  padding-bottom: 45px !important;
  margin-bottom: 0 !important;
}

#packages {
  padding-top: 50px !important;
}

/* 3. Fix package cards alignment */
.packages-grid {
  align-items: stretch !important;
}

.package-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.package-card .btn {
  margin-top: auto !important;
}

/* 4. Fix reviews layout */
.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 28px !important;
  width: 100% !important;
}

.testimonial-card {
  width: 100% !important;
  max-width: none !important;
  padding: 32px 26px !important;
  border-radius: 24px !important;
}

.testimonial-card p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.testimonial-card span {
  display: block !important;
  margin-top: 20px !important;
  color: #d3b36f !important;
  letter-spacing: 3px !important;
}

/* 5. Logo size balanced */
.ttp-logo img {
  width: 125px !important;
  max-width: 125px !important;
}

.footer-logo {
  text-align: center !important;
}

.footer-logo img {
  width: 105px !important;
  max-width: 105px !important;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  .ttp-logo img {
    width: 110px !important;
    max-width: 110px !important;
  }

  .footer-logo img {
    width: 90px !important;
    max-width: 90px !important;
  }

  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ===================================================== */
/* FINAL TRUE TO PROMISE CLEANUP + IMAGE FIXES */
/* ===================================================== */

/* ===== REMOVE DUPLICATED TAGLINE ===== */
.ttp-navbar .ttp-logo span,
.ttp-logo span {
  display: none !important;
}

/* ===== GLOBAL SECTION CLEANUP ===== */
.promise-collection-section,
.social-proof,
.featured-products-section,
#summer-collection,
#packages,
.testimonials-section,
.heavenly {
  background: #050505 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ===== SMOOTHER SPACING ===== */
.promise-collection-section {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.featured-products-section {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

#summer-collection {
  padding-top: 45px !important;
  padding-bottom: 60px !important;
}

.heavenly {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

#packages {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.testimonials-section {
  padding-top: 50px !important;
  padding-bottom: 60px !important;
}

/* ===== FIX PACKAGE CARD ALIGNMENT ===== */
.packages-grid {
  align-items: stretch !important;
}

.package-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.package-card .btn,
.package-card .button,
.package-card a {
  margin-top: auto !important;
}

/* ===== REVIEWS FIX ===== */
.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 28px !important;
  width: 100% !important;
}

.testimonial-card {
  width: 100% !important;
  max-width: none !important;
  padding: 32px 26px !important;
  border-radius: 24px !important;
  background: rgba(15,15,15,.88) !important;
}

.testimonial-card p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  color: #fff !important;
}

.testimonial-card span {
  display: block !important;
  margin-top: 20px !important;
  color: #d3b36f !important;
  letter-spacing: 3px !important;
}

/* ===== LOGO SIZE FIX ===== */

/* Header logo */
.ttp-logo img,
.site-logo img,
.custom-logo {
  width: 145px !important;
  max-width: 145px !important;
  height: auto !important;
}

/* Footer logo */
.footer-logo {
  text-align: center !important;
}

.footer-logo img,
footer .custom-logo {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  margin: 0 auto !important;
  display: block !important;
}

/* ===== IMAGE SIZE CLEANUP ===== */

/* Product cards */
.collection-card img,
.drop-card img,
.featured-card img,
.product-card img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 24px !important;
}

/* Heavenly Goods section */
.heavenly img {
  width: 100% !important;
  max-height: 520px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 28px !important;
}

/* Our story section */
.our-story-image img {
  width: 100% !important;
  max-height: 560px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 28px !important;
}

/* ===== REMOVE HARSH BACKGROUND CHANGES ===== */
section {
  border-top: none !important;
}

/* ===== MOBILE FIXES ===== */
@media only screen and (max-width: 768px) {

  /* Logo */
  .ttp-logo img,
  .site-logo img,
  .custom-logo {
    width: 120px !important;
    max-width: 120px !important;
  }

  footer .custom-logo,
  .footer-logo img {
    width: 100px !important;
    max-width: 100px !important;
  }

  /* Reviews */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .testimonial-card {
    padding: 26px 22px !important;
  }

  /* Product images */
  .collection-card img,
  .drop-card img,
  .featured-card img,
  .product-card img {
    height: 260px !important;
  }

  .heavenly img,
  .our-story-image img {
    max-height: 380px !important;
  }

  /* Better section spacing */
  .promise-collection-section,
  .featured-products-section,
  #summer-collection,
  #packages,
  .testimonials-section,
  .heavenly {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}
/* FINAL IMAGE FIT FIX — SHOW FULL PRODUCT IMAGES */

.collection-card img,
.drop-card img,
.featured-card img,
.product-card img {
  object-fit: contain !important;
  object-position: center !important;
  background: #050505 !important;
  padding: 10px !important;
}

/* Tote / accessories image fix */
img[alt="Tote bags and tumblers"],
img[alt="Faith Accessories"],
img[alt="Morning Reminder Tumbler"] {
  object-fit: contain !important;
  object-position: center !important;
  background: #050505 !important;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  .collection-card img,
  .drop-card img,
  .featured-card img,
  .product-card img {
    height: 300px !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  img[alt="Tote bags and tumblers"],
  img[alt="Faith Accessories"],
  img[alt="Morning Reminder Tumbler"] {
    height: 320px !important;
    object-fit: contain !important;
  }
}
/* FINAL READABILITY + HEADER FIXES */

/* Hide duplicated tagline under logo */
.ttp-logo span,
.ttp-navbar .ttp-logo span {
  display: none !important;
}

/* Heavenly Goods readability */
.heavenly {
  background: #050505 !important;
}

.heavenly h2,
.heavenly p,
.heavenly .custom-note {
  color: #ffffff !important;
}

.heavenly p {
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.heavenly-badge {
  color: #d3b36f !important;
  background: rgba(211, 179, 111, 0.08) !important;
  border: 1px solid rgba(211, 179, 111, 0.35) !important;
}

/* Make Heavenly Goods text block easier to read */
.heavenly-grid > div:last-child {
  background: rgba(0, 0, 0, 0.45) !important;
  padding: 28px !important;
  border-radius: 24px !important;
}

	/* FINAL PRODUCT IMAGE SIZE FIX */

/* Cards: show full image without cutting */
.collection-card img,
.drop-card img,
.featured-card img,
.product-card img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 22px !important;
}

/* Give image containers cleaner spacing */
.collection-card,
.drop-card,
.featured-card,
.product-card {
  overflow: hidden !important;
}

/* Make featured images not too tall on desktop */
.featured-card img {
  max-height: 420px !important;
}

/* Make collection/drop images balanced */
.collection-card img,
.drop-card img {
  max-height: 390px !important;
}

/* Heavenly Goods image */
.heavenly img {
  width: 100% !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  .collection-card img,
  .drop-card img,
  .featured-card img,
  .product-card img {
    height: auto !important;
    max-height: 360px !important;
    object-fit: contain !important;
  }

  .heavenly img {
    max-height: 420px !important;
  }
}
	/* HARD FORCE IMAGE FIX */

body .collection-card > img,
body .drop-card > img,
body .featured-card > img,
body .product-card > img,
body .collection-card img,
body .drop-card img,
body .featured-card img,
body .product-card img {
  width: 100% !important;
  height: auto !important;
  min-height: unset !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Specific tote/accessories images */
body img[alt*="Tote"],
body img[alt*="tote"],
body img[alt*="Tumblers"],
body img[alt*="Accessories"],
body img[alt*="Faith Accessories"] {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  body .collection-card img,
  body .drop-card img,
  body .featured-card img,
  body .product-card img {
    height: auto !important;
    max-height: none !important;
  }
}
	/* FINAL HEADER CLEANUP */

.ttp-logo span,
.ttp-navbar .ttp-logo span,
.ttp-logo p {
  display: none !important;
}

/* HEAVENLY GOODS READABILITY */

.heavenly-grid > div:last-child {
  background: rgba(0,0,0,.45) !important;
  padding: 28px !important;
  border-radius: 24px !important;
}

.heavenly h2,
.heavenly p,
.heavenly .custom-note {
  color: #ffffff !important;
}

.heavenly p {
  line-height: 1.75 !important;
}

/* CLEAN IMAGE PRESENTATION */

.collection-card img,
.drop-card img,
.featured-card img {
  border-radius: 24px !important;
  background: transparent !important;
}
	/* HEAVENLY GOODS FORM PREMIUM STYLE */

.wpforms-container,
.sureforms-form,
form {
  max-width: 920px !important;
  margin: 0 auto !important;
}

/* INPUTS */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select,
.sureforms-form input,
.sureforms-form textarea,
.sureforms-form select {

  background: #0f0f0f !important;
  border: 1px solid rgba(211,179,111,.25) !important;
  border-radius: 18px !important;

  color: #fff !important;

  padding: 18px 20px !important;

  font-size: 16px !important;

}

/* LABELS */
.wpforms-field-label,
.sureforms-form label {

  color: #d3b36f !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;

}

/* TEXTAREA */
textarea {
  min-height: 160px !important;
}

/* BUTTON */
.wpforms-submit,
.sureforms-form button,
.sureforms-form input[type=submit] {

  background: #d3b36f !important;
  color: #050505 !important;

  border: none !important;
  border-radius: 999px !important;

  padding: 18px 34px !important;

  font-weight: 800 !important;
  letter-spacing: 1px !important;

}

/* BUTTON HOVER */
.wpforms-submit:hover,
.sureforms-form button:hover,
.sureforms-form input[type=submit]:hover {

  background: #f0d58d !important;

}

/* FORM SPACING */
.wpforms-field,
.sureforms-form .sf-field {

  margin-bottom: 26px !important;

}
	/* SHOP PAGE READABILITY FIX */

.woocommerce,
.woocommerce-page,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  color: #ffffff !important;
}

/* Product titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.4 !important;
}

/* Prices */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #d3b36f !important;
  font-weight: 700 !important;
}

/* Shop page headings */
.woocommerce-products-header__title,
.woocommerce-page h1,
.woocommerce-page h2,
.woocommerce-page h3 {
  color: #ffffff !important;
}

/* Product cards background */
.woocommerce ul.products li.product {
  background: #111111 !important;
  padding: 18px !important;
  border-radius: 22px !important;
}

/* Buttons */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button {
  background: #d3b36f !important;
  color: #050505 !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
}

/* Button hover */
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: #ffffff !important;
  color: #050505 !important;
}

/* Breadcrumb / sorting text */
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering select {
  color: #ffffff !important;
}

/* Mobile cleanup */
@media only screen and (max-width: 768px) {
  .woocommerce ul.products li.product {
    padding: 16px !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 17px !important;
  }
}

/* Fix: SureForms Contact Form labels rendering white-on-white (invisible) */
.srfm-form-container-1631 .srfm-block-label,
.srfm-form-container-1631 .srfm-block-legend {
	color: #1E1E1E !important;
}

/* Mobile: reduce excessive vertical spacing in SureForms forms (Heavenly Goods Studio + Contact) */
@media only screen and (max-width: 767px) {
  .srfm-form {
    gap: 6px 16px !important;
  }
  .srfm-error-wrap {
    font-size: 0 !important;
    line-height: 0 !important;
    min-height: 0 !important;
    height: 0 !important;
  }
  .srfm-form p:empty {
    margin: 0 !important;
  }
}

/* hgs-menu-wrap-fix: ajuste de menu del header global en rango 922px-1400px para evitar que se vea desordenado al envolver en 2 filas */
@media (min-width: 922px) and (max-width: 1400px) {
  #ast-hf-menu-1 {
    row-gap: 10px;
    justify-content: flex-end;
    align-content: center;
  }
  #ast-hf-menu-1 > li > a {
    line-height: 1.5 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .ast-mobile-header-wrap .ast-primary-header-bar, .ast-primary-header-bar .site-primary-header-wrap {
    min-height: auto;
  }
}

/* _____ Heavenly Goods Studio page fixes _____ */
.hgs-page, .hgs-page * { color: #ffffff !important; }
.hgs-page p, .hgs-page li, .hgs-form-note { color: rgba(255,255,255,0.92) !important; }
.hgs-page .hgs-eyebrow { color: #d3b36f !important; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; font-size: 0.82rem; margin-bottom: 10px; }
.hgs-page h2 { margin-bottom: 16px !important; line-height: 1.2; }
.hgs-page p { line-height: 1.6; }
.hgs-page .hgs-btn { background: #d3b36f !important; color: #050505 !important; display: inline-block; padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: transform .15s ease, box-shadow .15s ease; }
.hgs-page .hgs-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(211,179,111,.25); }
.hgs-page .hgs-btn-secondary { background: transparent !important; color: #ffffff !important; border: 1.5px solid rgba(255,255,255,.5); }
.hgs-page .hgs-btn-secondary:hover { border-color: #d3b36f; color: #d3b36f !important; }
.hgs-page .hgs-hero { background: linear-gradient(rgba(5,5,5,.86), rgba(5,5,5,.86)), radial-gradient(circle at top right, rgba(211,179,111,.18), transparent 35%), #050505 !important; }
.hgs-page .hgs-logo { width: 145px !important; max-width: 145px !important; height: auto !important; display: block !important; margin-bottom: 32px !important; }
.hgs-page .srfm-form-container label, .hgs-page .srfm-form-container legend { color: #1a1a1a !important; }
.hgs-page .srfm-form-container, .hgs-page .srfm-form-container *:not(.srfm-submit-button):not(.srfm-submit-button *) { color: #1a1a1a !important; }
.hgs-page .srfm-form-container a:not(.srfm-submit-button):not(.srfm-submit-button *) { color: #1a56db !important; text-decoration: underline !important; font-weight: 600 !important; }

.hgs-page { padding-top: 24px !important; }
.hgs-page section { padding: 56px 40px !important; }
@media (max-width: 767px) {
  .hgs-page { padding-top: 16px !important; }
  .hgs-page section { padding: 40px 20px !important; }
}

.srfm-form-container-2290 { border-radius: 20px !important; padding: 40px !important; }
@media (max-width: 600px) { .srfm-form-container-2290 { padding: 24px !important; } }

.hgs-packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; margin-top: 28px; }
.hgs-package-card { background: #ffffff; border-radius: 12px; padding: 28px; text-align: left; }
.hgs-package-card h3, .hgs-package-card p, .hgs-package-card ul, .hgs-package-card li { color: #111111 !important; }
.hgs-package-card .hgs-btn { display: inline-block; background: #111111 !important; color: #ffffff !important; border-radius: 999px !important; padding: 14px 26px; font-size: 0.85rem; }

/* Hero */
.hgs-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }

/* Trust bar */
.hgs-trust-bar { padding-top: 30px !important; padding-bottom: 30px !important; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.hgs-trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; text-align: center; }
.hgs-trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hgs-trust-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(211,179,111,.12); display: flex; align-items: center; justify-content: center; }
.hgs-trust-icon svg { width: 22px; height: 22px; color: #d3b36f; }
.hgs-trust-item span:last-child { font-size: 0.82rem; font-weight: 600; letter-spacing: .2px; }
@media (max-width: 900px) { .hgs-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .hgs-trust-grid { grid-template-columns: 1fr; } }

/* Intro spacing */
.hgs-intro { padding-bottom: 24px !important; }
.hgs-what-we-create { padding-top: 24px !important; }
@media (max-width: 767px) {
  .hgs-intro { padding-bottom: 16px !important; }
  .hgs-what-we-create { padding-top: 16px !important; }
}

/* What We Create - card grid */
.hgs-create-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
.hgs-create-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 26px 22px; }
.hgs-create-card .hgs-icon-badge { width: 46px; height: 46px; border-radius: 50%; background: #d3b36f; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hgs-create-card .hgs-icon-badge svg { width: 22px; height: 22px; color: #050505; }
.hgs-create-card h3 { font-size: 1.05rem; margin-bottom: 8px !important; }
.hgs-create-card p { font-size: 0.92rem; margin-bottom: 0 !important; }
@media (max-width: 900px) { .hgs-create-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hgs-create-grid { grid-template-columns: 1fr; } }

/* Repeated CTA band */
.hgs-cta-band { text-align: center; margin-top: 36px; }

/* How It Works - redesigned 5-step grid (class based) */
.hgs-how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 36px; }
.hgs-how-step { text-align: left; }
.hgs-how-badge { width: 52px; height: 52px; border-radius: 50%; background: #d3b36f; color: #050505 !important; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; margin-bottom: 16px; }
.hgs-how-step h3 { font-size: 1rem; margin-bottom: 8px !important; }
.hgs-how-step p { font-size: 0.88rem; color: rgba(255,255,255,0.72) !important; margin-bottom: 0 !important; }
@media (max-width: 900px) { .hgs-how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hgs-how-grid { grid-template-columns: 1fr; } }

/* Before You Start checklist */
.hgs-checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 32px; margin-top: 30px; }
.hgs-checklist-item { display: flex; gap: 12px; align-items: flex-start; }
.hgs-checklist-item svg { width: 20px; height: 20px; color: #d3b36f; flex-shrink: 0; margin-top: 2px; }
.hgs-checklist-item p { margin-bottom: 0 !important; }
@media (max-width: 600px) { .hgs-checklist { grid-template-columns: 1fr; } }

/* FAQ */
.hgs-faq-list { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.hgs-faq-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 4px 22px; }
.hgs-faq-item summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hgs-faq-item summary::-webkit-details-marker { display: none; }
.hgs-faq-item summary::after { content: '+'; color: #d3b36f; font-size: 1.3rem; line-height: 1; }
.hgs-faq-item[open] summary::after { content: '−'; }
.hgs-faq-item p { padding: 0 0 18px 0; margin-bottom: 0 !important; font-size: 0.92rem; }

/* Mobile spacing */
@media (max-width: 767px) {
  .hgs-trust-bar, .hgs-what-we-create, .hgs-how-it-works, .hgs-before-you-start, .hgs-faq { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* ============================================================
   Contacto (pagina Contact) - eliminar columna vacia entre
   Email y los iconos sociales que dejaba un espacio en blanco
   ============================================================ */
.uagb-block-ebef70d3 { display: none !important; }
.uagb-block-251cd539,
.uagb-block-c9fbc81d,
.uagb-block-5c0bd371 {
  flex: 1 1 0 !important;
}

/* ============================================================
   Contacto - Email en una sola linea + iconos sociales en blanco
   ============================================================ */
.uagb-block-c9fbc81d { flex: 2.2 1 0px !important; }
.uagb-block-5c0bd371 a,
.uagb-block-5c0bd371 svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* ============================================================
   Contacto - columna central (Email) mas ancha que las laterales
   ============================================================ */
.uagb-block-251cd539 { flex: 0 0 115px !important; }
.uagb-block-5c0bd371 { flex: 0 0 120px !important; }
.uagb-block-c9fbc81d { flex: 1 1 0px !important; }

/* Contacto - Phone e Iconos se ajustan a su contenido en pantallas de escritorio/tablet (evita que "Phone" o el numero se partan), Email toma el resto del espacio. En movil (menos de 768px) se deja el comportamiento nativo de ancho completo apilado. */
@media (min-width: 768px) {
  .uagb-block-251cd539 { flex: 0 0 max-content !important; }
  .uagb-block-251cd539 .uagb-ifb-title,
  .uagb-block-251cd539 .uagb-ifb-desc { white-space: nowrap !important; }
  .uagb-block-5c0bd371 { flex: 0 0 max-content !important; }
  .uagb-block-c9fbc81d { flex: 1 1 0px !important; }
}

/* Contacto - la fila de Telefono/Email/Iconos debe ocupar todo el ancho de la pantalla en monitores anchos, en vez de quedar centrada en una caja de 1200px */
.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-5504678b > .uagb-container-inner-blocks-wrap {
  --inner-content-custom-width: 100% !important;
  max-width: 100% !important;
}

/* Ocultar el numero de productos ("X Products") debajo de cada categoria en la tienda */
.woocommerce-loop-category__title .count {
  display: none !important;
}

/* Ocultar precio y boton de compra en los 3 productos Custom (Heavenly Goods), se muestra formulario de pedido en su lugar */
.postid-535 .summary .price,
.postid-536 .summary .price,
.postid-537 .summary .price,
.postid-535 form.cart,
.postid-536 form.cart,
.postid-537 form.cart {
  display: none !important;
}

/* Ocultar botones de pago rapido (WooPay, PayPal, Venmo) y mensajes de cuotas en los 3 productos Custom */
.postid-535 .wcpay-express-checkout-wrapper,
.postid-536 .wcpay-express-checkout-wrapper,
.postid-537 .wcpay-express-checkout-wrapper,
.postid-535 .ppc-button-wrapper,
.postid-536 .ppc-button-wrapper,
.postid-537 .ppc-button-wrapper,
.postid-535 .ppcp-messages,
.postid-536 .ppcp-messages,
.postid-537 .ppcp-messages {
  display: none !important;
}

/* Mejorar la legibilidad del texto de categoria en la cuadricula de la tienda */
.shop ul.products li.product.product-category .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product.product-category .woocommerce-loop-category__title,
li.product.product-category a .woocommerce-loop-category__title {
  color: #1a1a1a !important;
  text-shadow: none !important;
}


/* Shrink SureForms field help/prompt text on all forms */
.srfm-description {
	  font-size: 12px !important;
}

/* Shrink SureForms note/prompt style advanced-heading text on all forms */
.srfm-form .wp-block-uagb-advanced-heading .uagb-heading-text {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}


/* ---- FIX: reducir padding lateral fijo de <section> en movil (2026-08-06) ---- */
@media (max-width: 767px) {
  section { padding: 60px 20px; }
}


/* ---- FIX: mostrar 'Starting at' en precio del listado shop para los 3 productos Custom Heavenly Goods (2026-08-06) ---- */
.woocommerce ul.products li.product.post-535 .price::before,
.woocommerce ul.products li.product.post-536 .price::before,
.woocommerce ul.products li.product.post-537 .price::before {
  content: "Starting at ";
}

/* ---- FIX: encabezado 'Need Help?' invisible (blanco sobre blanco) dentro del formulario de custom orders ---- */
.srfm-form-container h1,
.srfm-form-container h2,
.srfm-form-container h3,
.srfm-form-container h4,
.srfm-form-container .uagb-heading-text {
  color: #1a1a1a !important;
}


/* ---- Ocultar campos de validacion interna (Size Total / Size vs Exact Quantity Match) - visibles solo internamente, calculo sigue funcionando ---- */
.srfm-slug-size-total-check,
.srfm-slug-size-quantity-diff {
  display: none !important;
}


/* ---- Home hero: convertir barra de anuncio en boton secundario centrado, con menor peso visual que SHOP OUR COLLECTION ---- */
.ttp-hero .ttp-announce-bar {
  width: fit-content !important;
  max-width: 90% !important;
  height: auto !important;
  margin: 14px auto !important;
  padding: 10px 26px !important;
  background: transparent !important;
  border: 1px solid rgba(199,169,107,0.55) !important;
  border-radius: 100px !important;
  font-size: 0.66rem !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  color: #c7a96b !important;
}
.ttp-hero .ttp-announce-bar:hover {
  background: rgba(199,169,107,0.12) !important;
}
.ttp-hero .ttp-announce-icon,
.ttp-hero .ttp-announce-arrow {
  display: none !important;
}
