#fw-section-custom-html-63d3f0f3-aefa-400b-b62f-61c8bcec2134 {

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

body {
  background-color: #fefaf5;
  color: #000000;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.container.narrow {
  max-width: 880px;
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section.dark {
  background-color: #1e1b1a;
  color: #fcf7f2;
}

.section.dark p,
.section.dark h2,
.section.dark h3 {
  color: #fcf7f2;
}

/* HERO with image */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff6ed 0%, #fee9db 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 3rem 1.5rem;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
  }
  .hero-content {
    flex: 1.2;
  }
  .hero-image {
    flex: 1;
  }
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 32px;
  box-shadow: 0 25px 40px -16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #1a1a1a 0%, #4a2e1e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: clamp(1rem, 4vw, 1.3rem);
  color: #000000;
  font-weight: 400;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-content p {
    max-width: 100%;
  }
}

/* rest of CSS unchanged from previous version */
h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 550;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #000000;
}

h3 {
  font-size: clamp(1.3rem, 5vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.2rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.podcast-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0e2d4;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.podcast-card:hover {
  transform: translateY(-6px);
  border-color: #d9c2ae;
  box-shadow: 0 24px 36px -14px rgba(0, 0, 0, 0.15);
}

.podcast-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.podcast-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2a28;
}

.podcast-card p {
  font-size: 0.9rem;
  color: #5a4a3a;
}

.btn-podcast {
  display: inline-block;
  background-color: #1e1b1a;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.btn-podcast:hover {
  background-color: #3b2b1f;
}

.btn-podcast.light {
  background-color: #fcf7f2;
  color: #1e1b1a;
}

.btn-podcast.light:hover {
  background-color: #e6d9ce;
}

.section.dark .podcast-card {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 240, 220, 0.2);
}

.section.dark .podcast-card .podcast-name,
.section.dark .podcast-card p {
  color: #fcf7f2;
}

.section.dark .btn-podcast {
  background-color: #fcf7f2;
  color: #1e1b1a;
}

.section.dark .btn-podcast:hover {
  background-color: #e6d9ce;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #5a4a3a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: #000000;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  color: #a48d78;
  border-top: 1px solid #efe2d6;
  background: #fefaf5;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .podcast-grid {
    gap: 1.2rem;
  }
  .podcast-card {
    padding: 1.2rem;
  }
}
}
#fw-section-rich-text-177769088934568 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #f7f7f5;
--color-background-rgb: 247, 247, 245;
--color-on-background: #141413;
--color-on-background-rgb: 20, 20, 19;
--color-on-primary: #fafafa;
--color-on-primary-rgb: 250, 250, 250;
--color-product-image-background: #141413;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #000000;
--primary-btn-text: #fafafa;
--primary-btn-border-color: #141413;
--secondary-btn-bg: transparent;
--secondary-btn-text: #141413;
--secondary-btn-border-color: #141413;

}

#fw-section-custom-html-68d81a1f-eda1-4150-9c26-584b42636308 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #f7f7f5;
--color-background-rgb: 247, 247, 245;
--color-on-background: #f7f7f5;
--color-on-background-rgb: 247, 247, 245;
--color-on-primary: #fafafa;
--color-on-primary-rgb: 250, 250, 250;
--color-product-image-background: #f7f7f5;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #000000;
--primary-btn-text: #fafafa;
--primary-btn-border-color: #f7f7f5;
--secondary-btn-bg: transparent;
--secondary-btn-text: #f7f7f5;
--secondary-btn-border-color: #f7f7f5;
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fefaf5;
  color: #000000; /* black text */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.container.narrow {
  max-width: 880px;
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section.dark {
  background-color: #1e1b1a;
  color: #fcf7f2; /* light text for dark backgrounds, not black */
}

.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark p,
.section.dark .btn {
  color: #fcf7f2; /* ensures readability on dark */
}

.section.dark .card {
  background: rgba(0, 0, 0, 0.6); /* darker card background on dark section */
  border-color: rgba(255, 240, 220, 0.2);
  color: #fcf7f2;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #fff6ed 0%, #fee9db 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .hero {
    min-height: 85vh;
  }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent; /* gradient text stays */
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    margin-bottom: 1.5rem;
  }
}

.hero-content p {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  color: #000000; /* black */
  font-weight: 400;
}

h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 550;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: #000000; /* black */
}

h3 {
  font-size: clamp(1.4rem, 5vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #000000; /* black */
}

.lead {
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  font-weight: 450;
  margin-bottom: 1rem;
  color: #000000; /* black */
}

.bold {
  font-weight: 600;
  margin-top: 1rem;
  color: #000000;
}

p {
  color: #000000;
}

/* two column layout - fully responsive */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
  .two-col > div,
  .two-col > img {
    flex: 1;
    min-width: 0;
  }
}

.two-col.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .two-col.cards-grid {
    flex-direction: row;
    gap: 2rem;
  }
  .two-col.cards-grid .card {
    flex: 1;
  }
}

/* images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  img {
    border-radius: 28px;
  }
}

img:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 38px -14px rgba(0, 0, 0, 0.2);
}

.card {
  background: #ffffff;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0e2d4;
  transition: all 0.2s ease;
  color: #000000;
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
    border-radius: 32px;
  }
}

.card:hover {
  border-color: #d9c2ae;
  transform: translateY(-4px);
}

.center {
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: #000000;
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 570;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.25s;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  text-align: center;
}

@media (min-width: 768px) {
  .btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
  }
}

.btn:hover {
  background-color: #2c2c2c;
  transform: scale(1.02);
  box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.2);
}

.system-image-wrapper {
  margin-top: 2rem;
  text-align: center;
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .system-image-wrapper {
    margin-top: 3.5rem;
  }
}

.system-image-wrapper img {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 24px 42px -16px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}

@media (min-width: 768px) {
  .system-image-wrapper img {
    max-width: 85%;
    border-radius: 28px;
  }
}

.purified-img {
  margin: 1.5rem 0 1rem;
  border-radius: 24px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .purified-img {
    margin: 2rem 0 1.2rem;
    border-radius: 32px;
  }
}

.purified-img img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

@media (min-width: 768px) {
  .purified-img img {
    max-height: 550px;
  }
}

.cta-image {
  margin-bottom: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .cta-image {
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-image img {
  width: 100%;
  border-radius: 24px;
}

@media (min-width: 768px) {
  .cta-image img {
    border-radius: 32px;
  }
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* footer */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #000000;
  border-top: 1px solid #efe2d6;
  background: #fefaf5;
}

@media (min-width: 768px) {
  footer {
    padding: 2rem;
    font-size: 0.85rem;
  }
}
}




#fw-section-collection-template-collection-purified {
--font-heading-scale: 0.7;
--font-body-scale: 0.99;
}
#fw-section-collection-template-collection-purified {

a{
display: none
}
}
#fw-section-custom-html-5f5c52fe-7483-4fc7-8cec-ddbfc934d5ad {
--color-primary: #f7f7f5;
--color-primary-rgb: 247, 247, 245;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-background: #f7f2f2;
--color-on-background-rgb: 247, 242, 242;
--color-on-primary: #24241f;
--color-on-primary-rgb: 36, 36, 31;
--color-product-image-background: #f7f2f2;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #f7f7f5;
--primary-btn-text: #24241f;
--primary-btn-border-color: #f7f2f2;
--secondary-btn-bg: transparent;
--secondary-btn-text: #f7f2f2;
--secondary-btn-border-color: #f7f2f2;
/* style.css */

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

body{
  font-family:'Inter',sans-serif;
  background:#0d0d0d;
  color:#f5f5f5;
  overflow-x:hidden;
}

.hero{
  position:relative;
  width:100%;
  min-height:100vh;

  background:
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.7)
    ),
    url('your-hoodie-image.jpg');

  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
}

.overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      circle at top right,
      rgba(255,255,255,0.06),
      transparent 35%
    );
}

.navbar{
  position:relative;
  z-index:2;

  width:100%;
  padding:32px 7%;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:14px;
  letter-spacing:4px;
  font-weight:600;
}

.nav-links{
  display:flex;
  gap:32px;
}

.nav-links a{
  text-decoration:none;
  color:#d7d7d7;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:white;
}

.hero-content{
  position:relative;
  z-index:2;

  width:100%;
  max-width:700px;

  padding:80px 7% 100px;
  margin-top:auto;
}

.collection-label{
  font-size:12px;
  letter-spacing:3px;
  color:#bbbbbb;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:clamp(52px,9vw,110px);
  line-height:0.92;
  font-weight:500;
  margin-bottom:28px;
}

.hero-text{
  max-width:520px;
  color:#d0d0d0;
  font-size:17px;
  line-height:1.7;
  margin-bottom:50px;
}

.launch-box{
  margin-bottom:40px;
}

.launch-label{
  font-size:11px;
  letter-spacing:3px;
  color:#8f8f8f;
  margin-bottom:10px;
}

.launch-box h2{
  font-size:32px;
  font-weight:400;
}

.email-form{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:32px;
}

.email-form input{
  flex:1;
  min-width:260px;

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);

  color:white;

  padding:18px 20px;
  border-radius:14px;

  outline:none;
  font-size:14px;

  backdrop-filter:blur(10px);
}

.email-form input::placeholder{
  color:#9d9d9d;
}

.email-form button{
  padding:18px 26px;

  border:none;
  border-radius:14px;

  background:white;
  color:black;

  font-size:14px;
  font-weight:500;
  cursor:pointer;

  transition:0.3s ease;
}

.email-form button:hover{
  transform:translateY(-2px);
}

.bottom-note{
  color:#9f9f9f;
  font-size:13px;
  letter-spacing:0.5px;
  margin-top:10px;
}

@media(max-width:768px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content{
    padding-top:40px;
  }

  .hero-content h1{
    line-height:1;
  }

  .email-form{
    flex-direction:column;
  }

  .email-form button{
    width:100%;
  }

}
}
#fw-section-hero-1745212969 {
--color-primary: #1a1a1a;
--color-primary-rgb: 26, 26, 26;
--color-background: #f7f7f5;
--color-background-rgb: 247, 247, 245;
--color-on-background: #f7f5f5;
--color-on-background-rgb: 247, 245, 245;
--color-on-primary: #fafafa;
--color-on-primary-rgb: 250, 250, 250;
--color-product-image-background: #f7f5f5;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #1a1a1a;
--primary-btn-text: #fafafa;
--primary-btn-border-color: #f7f5f5;
--secondary-btn-bg: transparent;
--secondary-btn-text: #f7f5f5;
--secondary-btn-border-color: #f7f5f5;

}
#fw-section-custom-html-96a81c8b-e170-4473-824b-91c37b2e284f {

/* PREMIUM SUSPENSE PANEL */

.launch-panel{
  width:100%;
  max-width:560px;

  padding:40px;

  border-radius:28px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(18px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35);

  margin-bottom:30px;
}

.launch-line{
  width:70px;
  height:1px;

  background:rgba(255,255,255,0.5);

  margin-bottom:24px;
}

.launch-tag{
  font-size:11px;
  letter-spacing:4px;
  color:#9f9f9f;

  margin-bottom:20px;
}

.launch-panel h2{
  font-size:clamp(34px,5vw,58px);
  line-height:1.02;
  font-weight:500;

  margin-bottom:24px;
}

.launch-description{
  color:#cfcfcf;
  font-size:16px;
  line-height:1.8;

  max-width:420px;

  margin-bottom:34px;
}

/* BUTTONS */

.launch-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;

  margin-bottom:24px;
}

.primary-btn,
.secondary-btn{
  text-decoration:none;

  padding:16px 26px;

  border-radius:14px;

  font-size:14px;
  font-weight:500;

  transition:0.35s ease;
}

.primary-btn{
  background:white;
  color:black;
}

.primary-btn:hover{
  transform:translateY(-3px);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.14);

  background:rgba(255,255,255,0.04);

  color:white;

  backdrop-filter:blur(10px);
}

.secondary-btn:hover{
  background:rgba(255,255,255,0.08);
  transform:translateY(-3px);
}

/* FOOTNOTE */

.launch-note{
  color:#888888;
  font-size:12px;
  letter-spacing:1px;
}

/* MOBILE */

@media(max-width:768px){

  .launch-panel{
    padding:30px 24px;
  }

  .launch-actions{
    flex-direction:column;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    text-align:center;
  }

}
}


#fw-section-featured-product-3900760f-3b0b-48fd-a8e3-786bc2e4cb85 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #f7f7f5;
--color-background-rgb: 247, 247, 245;
--color-on-background: #505036;
--color-on-background-rgb: 80, 80, 54;
--color-on-primary: #fafafa;
--color-on-primary-rgb: 250, 250, 250;
--color-product-image-background: #505036;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #000000;
--primary-btn-text: #fafafa;
--primary-btn-border-color: #505036;
--secondary-btn-bg: transparent;
--secondary-btn-text: #505036;
--secondary-btn-border-color: #505036;

}
#fw-section-rich-text-88d058a5-4b99-4c7a-94a1-82b5e6c8c339 {
--font-heading-scale: 1.23;
--font-body-scale: 1.0;
}
#fw-section-rich-text-88d058a5-4b99-4c7a-94a1-82b5e6c8c339 {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #f7f7f5;
--color-background-rgb: 247, 247, 245;
--color-on-background: #111110;
--color-on-background-rgb: 17, 17, 16;
--color-on-primary: #fafafa;
--color-on-primary-rgb: 250, 250, 250;
--color-product-image-background: #111110;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #000000;
--primary-btn-text: #fafafa;
--primary-btn-border-color: #111110;
--secondary-btn-bg: transparent;
--secondary-btn-text: #111110;
--secondary-btn-border-color: #111110;

}

#fw-section-hero-4330d6a1-d786-4d7a-84e6-7215f0ef505d {
--font-heading-scale: 0.83;
--font-body-scale: 1.0;
}
#fw-section-hero-4330d6a1-d786-4d7a-84e6-7215f0ef505d {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #f7f7f5;
--color-background-rgb: 247, 247, 245;
--color-on-background: #090908;
--color-on-background-rgb: 9, 9, 8;
--color-on-primary: #fafafa;
--color-on-primary-rgb: 250, 250, 250;
--color-product-image-background: #090908;
--color-background-brightness: 247;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #000000;
--primary-btn-text: #fafafa;
--primary-btn-border-color: #090908;
--secondary-btn-bg: transparent;
--secondary-btn-text: #090908;
--secondary-btn-border-color: #090908;

}