:root {
        --border: #999;
        --muted: #666;
        --bg: #ffffff;
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "inter", sans-serif;
        background: var(--bg);
        color: #111;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      /* ================= HEADER ================= */
      header {
        border-bottom: 2px solid var(--border);
      }

      .top-banner {
        height: 200px;
        background: linear-gradient(90deg, #ddd, #eee);
        display: flex;
        align-items: center;
        justify-content: center;
        
        font-size: 48px;
        letter-spacing: 4px;
        font-style: italic;
      }

      @media (max-width: 768px) {
        .top-banner {
          height: 120px;
          font-size: 32px;
          letter-spacing: 2px;
        }
      }
      .top-banner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: block;
      }

      .nav-bar {
        border-top: 1px solid var(--border);
        padding: 10px 20px;
        font-size: 14px;
        text-transform: uppercase;
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
      }

      @media (max-width: 768px) {
        .nav-bar {
          gap: 10px;
          padding: 8px 10px;
          font-size: 12px;
        }
      }
      /* ================= FOOTER ================= */
      .footer {
        padding: 2rem 1.5rem;
        text-align: center;
        font-size: 1rem;
        color: var(--muted);
      }
      .footer a {
        margin: 0 1rem;
        color: var(--muted);
        text-decoration: none;
      }

      @media (max-width: 768px) {
        .footer {
          padding: 1.5rem 1rem;
          font-size: 0.9rem;
        }

        .footer a {
          margin: 0 0.5rem;
          font-size: 0.85rem;
        }
      } 
      /* ================= LAYOUT ================= */
      .page {
        
        max-width: 90%;
        margin: 40px auto;
        
        padding: 20px;
      }

      @media (max-width: 1024px) {
        .page {
          grid-template-columns: 1fr;
          max-width: 95%;
          margin: 20px auto;
          padding: 15px;
        }
      }

      /* ================= SIDEBAR ================= */
      .sidebar {
        border: 1px solid var(--border);
        padding: 15px;
        font-size: 13px;
      }

      @media (max-width: 1024px) {
        .sidebar {
          display: none;
        }
      }

      .sidebar h4 {
        margin-bottom: 10px;
        font-weight: 600;
        text-transform: uppercase;
      }

      .sidebar ul {
        list-style: none;
        margin-bottom: 20px;
      }

      .sidebar li {
        margin-bottom: 6px;
        color: var(--muted);
      }

      /* ================= MAIN CONTENT ================= */
      .main {
        position: relative;
        border: 1px solid var(--border);
        padding: 20px;
        background: #fff;
        overflow: hidden;
        z-index: 2;
      }
      .main > *:not(.bg-text) {
        position: relative;
        z-index: 2;
        background: #fff;
      }



      .last-chance {
        text-align: center;
        
        letter-spacing: 2px;
        margin-bottom: 20px;
      }

      .product-grid {
        display: grid;
        grid-template-columns: 661px 1fr;
        gap: 30px;
      }

      @media (max-width: 1024px) {
        .product-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
      }

      /* ================= PRODUCT LEFT ================= */
      .product-title {
        
       
       
        margin-bottom: 10px;
      }

      .product-subtitle {
      
       font-size: 16px;
        margin-bottom: 20px;
        color: var(--muted);
      }

      .product-image {
        border: 1px solid var(--border);
        margin-bottom: 10px;
      }

      .product-image img {
        width: 100%;
        display: block;
      }

      .thumbs {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
      }

      .thumbs img {
        width: 60px;
        border: 1px solid var(--border);
        cursor: pointer;
      }

      .about-box {
        border: 1px solid var(--border);
        padding: 12px;
        font-size: 14px;
        
      }
      .about-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
      }

      .about-box h4 {
        
        font-style: italic;
        margin-bottom: 8px;
      }

      /* ================= 
      PRODUCT RIGHT
       ================= */
      .price-box {
        border: 1px solid var(--border);
        padding: 15px;
        margin-bottom: 20px;
      }

      .price-box h3 {
        text-align: center;
        
        font-style: italic;
        margin-bottom: 10px;
      }

      .price-list {
        font-size: 14px;
        line-height: 1.6;
      }

      .review-box {
        border: 1px solid var(--border);
        padding: 15px;
        
      }

      .review-box h3 {
        
        
        margin-bottom: 10px;
      }

      .video {
        position: relative;
        padding-top: 56.25%;
        background: #000;
      }

      .video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
      }
      .bg-text {
        position: absolute;
        inset: -150%;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 60px;

        transform: rotate(-45deg);
        z-index: 0;
        pointer-events: none;
        }

      .bg-text span {
        
        font-size: 72px;
        font-style: italic;
        color: rgba(0, 0, 0, 0.06);
        white-space: nowrap;
        }
.product-btn {
    display: inline-block;
    background-color: #000000;
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 700;
    color: #ffffff;
    
    transition: background 0.25s ease, color 0.25s ease;
    width: 100%;
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .product-btn p {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    margin-top: 5px;
  }

  .product-btn:hover {
    background: white;
    color: black;
  }
        /* ================= 
      PRODUCT RIGHT END
       ================= */

      /* ================= RIGHT NOTES ================= */
      .notes {
        border: 1px solid var(--border);
        padding: 15px;
        font-size: 13px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .note {
        display: flex;
        gap: 10px;
      }

      .note .swatch {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        background: linear-gradient(135deg, #ff8a00, #e52e71);
      }

      .note .lines div {
        height: 6px;
        background: #000;
        margin-bottom: 6px;
        width: 120px;
      }

      /* ================= RESPONSIVE ================= */
      @media (max-width: 1100px) {
        .page {
          grid-template-columns: 1fr;
        }
    }

    /* ================= PRODUCT BROWSE ================= */
   
    /* ================= BROWSE TOP ================= */
    .browse-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  gap: 1rem;
}

@media (max-width: 768px) {
  .browse-top {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: #1f1f2e;
  color: #eee;
  cursor: pointer;
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff4ecd;
  color: #0f0f14;
}

.sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort select {
  padding: 0.5rem;
  border-radius: 8px;
  border: none;
}
/* ================= PRODUCT BROWSE TOP END ================= */
/* ================= PRODUCT BROWSE GRID ================= */

.browse-page {
        display: grid;
        grid-template-columns: 240px 1fr 220px;
        gap: 20px;
        padding: 20px;
}

@media (max-width: 1024px) {
  .browse-page {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
    .productbrowse-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  padding: 2rem;
}

@media (max-width: 1024px) {
  .productbrowse-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .productbrowse-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .productbrowse-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
  }
}
.product-card {
  background: #ffffff;
  
  height: 200px;
  width: 150px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  padding: 1rem;
  
}

.product-card img {
   
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card h3 {

  font-size: 1rem;
  color: #040405;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
/* ================= PRODUCT BROWSE GRID END ================= */
/* ================= PAGINATION ================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 0;
}

.page-btn {
  padding: 0.6rem 1rem;
  border: none;
  background: #1f1f2e;
  color: #eee;
  cursor: pointer;
}

.page-btn.active,
.page-btn:hover {
  background: #ff4ecd;
  color: #0f0f14;
}
/* ================= PAGINATION END ================= */
/* ================= BROWSE PAGE MOBILE ================= */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .browse-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= BROWSE PAGE MOBILE END ================= */
/* ================= REVIEW BROWSE PAGE ================= */
.reviews-page {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.review-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .review-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .review-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.review-card {
  position: relative;
  overflow: hidden;
  background: #afafca;
  cursor: pointer;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-card:hover img {
  transform: scale(1.08);
}
.review-card.big {
  aspect-ratio: 1 / 1;
}


.review-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.review-overlay h2,
.review-overlay h3 {
  margin: 0;
  color: #fff;
}

.review-overlay span {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #ff4ecd;
}

@media (max-width: 768px) {
  .review-row {
    grid-template-columns: 1fr;
  }

  .review-small-column {
    grid-template-rows: auto;
  }

  .review-card.big,
  .review-card.small {
    aspect-ratio: 16 / 9;
  }
  .review-overlay {
    line-height: 1;
  }
}
/* ================= REVIEW BROWSE PAGE END ================= */
/* ================= SPECIFIC REVIEW PAGE ================= */
.review-layout {
  /* display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem; */
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
/* ==== TOC ===*/

.toc {
  position: sticky;
  align-self: self-start;
  top: 100px;
  max-width: 175px;
  padding: 1.25rem;
  font-size: 0.9rem;
}

.toc h4 {
  margin-bottom: 0.75rem;
}

.toc ul {
  list-style: none;
  padding: 0;
}

.toc li {
  margin-bottom: 0.5rem;
}

.toc a {
  color: var(--muted);
  text-decoration: none;
}

.toc a:hover {
  color: #ff4ecd;
}

@media (max-width: 1024px) {
  .toc {
    display: none;
  }
}
/* TOC END */

.blog-article {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.blog-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .blog-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.blog-block.reverse {
  direction: rtl;
}

.blog-block.reverse > * {
  direction: ltr;
}
.blog-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-align: center;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-text h1,
.blog-text h2, 
.blog-text h3{
  margin-bottom: 1rem;
}

.blog-text p {
  margin-bottom: 1rem;
}


/*===== REVIEW RATING ======*/
.review-rating {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #7878cb;
  padding: 1rem;
  

}

.review-rating .score {
  font-size: 3rem;
  font-weight: 700;
  color: #ff4ecd;
  
}

.rating-info p {
  color: #cfcfe0;
  font-size: 0.95rem;
}
/*===== REVIEW RATING END ======*/

.review-image h3 {
  color: #000;
  text-align: center;

}

.review-text p {
  line-height: 1.7;
  font-size: 1.05rem;
}

/*===== AFFILIATE ===*/

.reviewctaauthor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #efefef;
}

@media (max-width: 768px) {
  .reviewctaauthor {
    grid-template-columns: 1fr;
  }

  .review-cta {
    border-right: none;
    border-bottom: 3px solid var(--border);
  }
}
.review-cta {
  text-align: center;
  padding: 3rem 2rem;
  border-right: 3px solid var(--border);
}

@media (max-width: 768px) {
  .review-cta {
    padding: 2rem 1.5rem;
  }
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 1.8rem;
  background: var(--bg);
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
/*===== AFFILIATE END ===*/
/*===== AUTHOR MESSAGE ===*/

.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  justify-content: center;
}


.author-box img {
  width: 70px;
  height: 70px;
  border-radius: 10%;
  object-fit: cover;
}

/*===== AUTHOR MESSAGE END ===*/

@media (max-width: 768px) {
  .review-block {
    grid-template-columns: 1fr;
  }

  .review-block.reverse {
    direction: ltr;
  }

  .review-image {
    aspect-ratio: 16 / 9;
  }
}

/* ================= SPECIFIC REVIEW PAGE END ================= */
/* ================= PRIVACY POLICY ================= */
.policy-page {
  max-width: 900px;
  margin: auto;
  padding: 3.5rem 2rem;
}

@media (max-width: 768px) {
  .policy-page {
    padding: 2rem 1rem;
  }

  .policy-page h1 {
    font-size: 1.8rem;
  }
}

.policy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
  font-size: 1rem;
  line-height: 1.7;
}

.policy-content ul {
  padding-left: 1.4rem;
}
/* ================= PRIVACY POLICY END ================= */
/* ================= CONTACT ================= */
.contact-page {
  max-width: 700px;
  margin: auto;
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 1rem;
  }
}

.contact-intro {
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.8rem 1.6rem;
  background: #ff4ecd;
  color: #0f0f14;

  font-weight: 600;
  border: none;
  cursor: pointer;
}

.contact-alt {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--muted);
}
/* ================= CONTACT END ================= */
/* ================= ABOUT US ================= */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  
  background-color: var(--bg);
 
  line-height: 1.7;
}

/* HERO */
.about-hero {
  min-height: 50vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}

/* CONTENT WRAPPER */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

@media (max-width: 768px) {
  .about-content {
    padding: 2rem 1rem;
  }
}

/* SECTIONS */
.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.4rem;
  }
}

.about-section p {
  margin-bottom: 1rem;

}

/* MISSION HIGHLIGHT */
.about-section.mission {

  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.about-section.mission p {
  font-size: 1.1rem;
  font-weight: bold;
}

/* CREATOR BOX */
.about-creator {
  margin-top: 4rem;
  padding: 2rem;
  border-left: 4px solid #7f5af0;
  border-radius: 8px;
}

.about-creator h3 {
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }
}
/* ================= ABOUT US END ================= */
/* ================= TRUST MINI ================= */
.trust-section {
  background-color: var(--bg);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
  max-width: 900px;
  margin: 0 auto;
}

.trust-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  
}

.trust-intro {
  
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.trust-points {
  list-style: none;
  margin-bottom: 1.5rem;
}

.trust-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  
}

.trust-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7f5af0;
  font-weight: bold;
}

.trust-disclosure {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 768px) {
  .trust-section {
    padding: 2.5rem 1.25rem;
  }

  .trust-section h3 {
    font-size: 1.4rem;
  }
}
/* ================= TRUST MINI END ================= */
/*================= EMAIL CAPTURE ================= */
.email-capture {
  padding: 4rem 1.5rem;
  background: rgb(229, 229, 229);
  display: flex;
  justify-content: center;
}

.email-box {
  max-width: 500px;
  width: 100%;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.email-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.email-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.email-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.email-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-size: 1rem;
  outline: none;
}

.email-form input::placeholder {
  color: #888;
 

}

.email-form button {
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: #ff4ecd;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.email-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 78, 205, 0.4);
}
.email-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #9a9ab0;
}

@media (max-width: 768px) {
  .email-capture {
    padding: 2rem 1rem;
  }

  .email-box {
    padding: 1.5rem;
  }

  .email-box h2 {
    font-size: 1.5rem;
  }

  .email-box p {
    font-size: 0.95rem;
  }

  .email-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .email-form input,
  .email-form button {
    width: 100%;
  }
}
/*================= END EMAIL CAPTURE ================= */