/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

/* =========================================
   HEADER
========================================= */

.main-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================================
   LOGO
========================================= */

.logo {
  color: #fff;
  text-decoration: none;

  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* =========================================
   NAVIGATION
========================================= */

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.main-nav ul li a:hover {
  color: #ffc000;
}

/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    background: #000;

    display: none;
    padding: 20px 0;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .logo {
    font-size: 1.4rem;
  }
}

/* =========================================
   HERO SECTION
========================================= */

.hero {
  min-height: 90vh;

  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 25px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  align-items: center;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-tag {
  color: #ffc000;

  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;

  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;

  margin-bottom: 25px;

  color: #000;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;

  color: #444;

  max-width: 600px;

  margin-bottom: 35px;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;

  background: #000;
  color: #fff;

  padding: 16px 34px;

  text-decoration: none;
  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffc000;
  color: #000;
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #000;
  color: #000;
}

.hero-btn-outline:hover {
  background: #000;
  color: #fff;
}

/* =========================================
   HERO IMAGE
========================================= */

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;

  border-radius: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* =========================================
   MOBILE HERO
========================================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;

    padding: 60px 20px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }
}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-products {
  max-width: 1400px;
  margin: 0 auto;

  padding: 100px 25px;
  overflow: hidden;
}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading p {
  color: #ffc000;

  font-size: 0.95rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 2px;

  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);

  color: #000;
}

/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
  background: #fff;

  border-radius: 25px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* =========================================
   PRODUCT IMAGE
========================================= */

.product-card img {
  width: 100%;

  height: 220px;

  object-fit: cover;

  display: block;
}
/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-size: 1.3rem;

  margin-bottom: 15px;

  color: #000;
}

.product-content p {
  color: #555;

  line-height: 1.7;

  margin-bottom: 20px;

  flex-grow: 1;
}

/* =========================================
   POLICY HEADINGS
========================================= */

.content-container h2 {
  margin-top: 50px;
  margin-bottom: 20px;

  font-size: 1.6rem;

  color: #000;
}

/* =========================================
   POLICY LISTS
========================================= */

.content-container ul {
  padding-left: 20px;

  margin-bottom: 25px;
}

.content-container ul li {
  margin-bottom: 12px;

  line-height: 1.8;

  color: #555;
}

/* =========================================
   PRICE
========================================= */

.price {
  display: block;

  font-size: 1.4rem;
  font-weight: 700;

  margin-bottom: 20px;

  color: #000;
}

/* =========================================
   BUTTON
========================================= */

.product-btn {
  display: inline-block;

  background: #000;
  color: #fff;

  text-decoration: none;

  padding: 14px 24px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s ease;
}

.product-btn:hover {
  background: #ffc000;
  color: #000;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #000;
  color: #fff;

  margin-top: 100px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;

  padding: 80px 25px 30px;
}

/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;

  gap: 50px;

  padding-bottom: 50px;
}

/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
  font-size: 2rem;

  margin-bottom: 20px;

  color: #fff;
}

.footer-text {
  color: #ccc;

  line-height: 1.8;

  margin-bottom: 30px;
}

/* =========================================
   TRUST BADGES
========================================= */

.trust-badges {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

.trust-badges span {
  color: #fff;
  font-size: 0.95rem;
}

/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-column h4 {
  margin-bottom: 25px;

  font-size: 1.2rem;

  color: #fff;
}

/* =========================================
   FOOTER LINKS
========================================= */

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;

  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffc000;
}

/* =========================================
   FOOTER TEXT
========================================= */

.footer-column p {
  color: #ccc;

  line-height: 1.8;

  margin-bottom: 15px;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 30px;

  text-align: center;
}

.footer-bottom p {
  color: #999;
}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 950px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    padding: 60px 20px 30px;
  }
}

/* =========================================
   SECTION DIVIDER
========================================= */

.section-divider {
  max-width: 2500px;

  margin: 0 auto;

  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

/* =========================================
   PAGE CONTENT
========================================= */

.page-content {
  padding: 40px 20px;
}

/* =========================================
   CONTENT CONTAINER
========================================= */

.content-container {
  max-width: 800px;

  margin: 0 auto;
}

/* =========================================
   PAGE HEADINGS
========================================= */

.content-container h1 {
  margin-bottom: 30px;

  font-size: clamp(2rem, 5vw, 3.5rem);

  color: #000;
}

/* =========================================
   PAGE TEXT
========================================= */

.content-container p {
  line-height: 1.9;

  margin-bottom: 24px;

  color: #555;

  font-size: 1.05rem;
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-main {
  padding: 100px 20px;
}

/* =========================================
   CONTACT CONTAINER
========================================= */

.contact-container {
  max-width: 800px;

  margin: 0 auto;
}

/* =========================================
   CONTACT HEADING
========================================= */

.contact-heading {
  text-align: center;

  margin-bottom: 50px;
}

.contact-tag {
  color: #ffc000;

  font-size: 0.95rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 2px;

  margin-bottom: 15px;
}

.contact-heading h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);

  margin-bottom: 25px;

  color: #000;
}

.contact-text {
  color: #555;

  line-height: 1.9;

  font-size: 1.05rem;
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
  background: #fff;

  padding: 50px;

  border-radius: 30px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================
   FORM GROUP
========================================= */

.form-group {
  margin-bottom: 25px;
}

/* =========================================
   INPUTS
========================================= */

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px 20px;

  border: 1px solid #ddd;

  border-radius: 15px;

  font-size: 1rem;

  outline: none;

  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffc000;
}

/* =========================================
   BUTTON
========================================= */

.contact-btn {
  display: inline-block;

  background: #000;
  color: #fff;

  border: none;

  padding: 16px 35px;

  border-radius: 50px;

  font-size: 1rem;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #ffc000;
  color: #000;
}

/* =========================================
   ERROR MESSAGE
========================================= */

.contact-error {
  background: #ffe5e5;

  color: #c40000;

  padding: 18px 20px;

  border-radius: 12px;

  margin-bottom: 30px;
}

/* =========================================
   MOBILE CONTACT
========================================= */

@media (max-width: 768px) {
  .contact-form {
    padding: 30px 25px;
  }

  .contact-main {
    padding: 70px 20px;
  }
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CONTACT INFO
========================================= */

.contact-info {
  margin-top: 60px;

  text-align: center;
}

.contact-info h2 {
  margin-bottom: 20px;

  font-size: 1.8rem;
}

.contact-info p {
  margin-bottom: 25px;

  line-height: 1.9;

  color: #555;
}

.terms-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.terms-page h1 {
  margin-bottom: 20px;
}

.terms-page h2 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.terms-page h4 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.terms-page p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.terms-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-page li {
  margin-bottom: 10px;
}

/* =====================================================
   SUCCESS PAGE
===================================================== */

.success-page {
  padding: 80px 20px;
}

.success-container {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #00c853;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.success-container h1 {
  margin-bottom: 20px;
}

.success-message {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#order-info {
  margin-top: 20px;
  font-weight: 600;
}

.success-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: #f3f3f3;
  color: #000;
}

.btn-secondary:hover {
  background: #e4e4e4;
}

.support-box {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.support-box h3 {
  margin-bottom: 15px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
  .success-container {
    padding: 40px 25px;
  }

  .success-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* =====================================================
   RETURNS PAGE
===================================================== */

.returns-page {
  padding: 60px 20px;
}

.returns-container {
  max-width: 900px;
  margin: 0 auto;
}

.returns-container h1 {
  margin-bottom: 20px;
}

.returns-container h2 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.returns-container p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.returns-container ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.returns-container li {
  margin-bottom: 10px;
}

.returns-container a {
  word-break: break-word;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
  .returns-page {
    padding: 40px 15px;
  }
}

/* =====================================================
   BLOG / READ MORE PAGE
===================================================== */

.blog-page {
  padding: 60px 20px;
}

.blog-container {
  max-width: 950px;
  margin: 0 auto;
}

.blog-article {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-article h1 {
  margin-bottom: 20px;
}

.blog-article h2 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.blog-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.blog-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 35px;
}

.blog-article p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.blog-article ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-article li {
  margin-bottom: 10px;
}

.blog-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #000;
  color: #fff;
  margin-top: 25px;
}

.btn-primary :hover {
  background: #ffc000;
  color: #fff;
}

.btn-secondary {
  background: #f3f3f3;
  color: #000;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
  .blog-article {
    padding: 35px 25px;
  }

  .blog-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.buy-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.buy-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  background-color: #ffc000;
  color: #000;
}

/* =====================================================
   HEADER
===================================================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  padding: 16px 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =====================================================
   LOGO
===================================================== */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 230px;
  height: auto;
  display: block;
}

/* =====================================================
   NAVIGATION
===================================================== */

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.main-nav a:hover {
  opacity: 0.8;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {
  .site-logo {
    width: 170px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 20px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .header-container {
    flex-wrap: wrap;
  }
}

.main-header {
  padding: 6px 10px;
}

.site-logo {
  width: 210px;
}

.main-nav a {
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: #ff4fa3;
}

.main-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
  }

  .site-logo {
    width: 150px;
  }

  .menu-toggle {
    margin-left: auto;
    font-size: 2rem;
  }
}

/* =====================================================
   MOBILE MENU FIX
===================================================== */

@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-top: 20px;
  }

  .menu-toggle {
    display: block;
  }
}

/* =========================================
   404 PAGE
========================================= */

.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.error-404 .content-container {
  max-width: 700px;
  margin: 0 auto;
}

.error-code {
  display: block;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  color: #ff5c8a;
  line-height: 1;
  margin-bottom: 20px;
}

.error-404 h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.error-404 p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.error-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #ff5c8a;
}

.btn-secondary {
  background: #f2f2f2;
  color: #000;
}

.btn-secondary:hover {
  background: #ddd;
}

/* MOBILE */

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 20px;
  }

  .error-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

/* =========================================
   FEATURE CARDS
========================================= */

.feature-cards {
  padding: 80px 20px;
  background: #f5f5f5;
}

.feature-grid {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.04);

  padding: 32px 28px;

  border-radius: 24px;

  text-align: center;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(255, 92, 138, 0.12);
}

.feature-card:hover {
  background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
}

.feature-icon {
  font-size: 3.3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* MOBILE */

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* PRODUCT IMAGE */
.product-card img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

/* TITLE */
.product-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: #222;
}

/* DESCRIPTION */
.product-card p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #666;
}

/* BUY BUTTON */
.buy-btn {
  display: inline-block;
  padding: 13px 28px;
  background: linear-gradient(135deg, #ff6b81, #ff9f43);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
}

/* BUTTON HOVER */
.buy-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* STOCK BADGE */
.stock-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ff4d6d;
  color: white;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
}
/*NEW COOKIE SECTION */

.site-cookie-section {
  background: #111;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-cookie-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.site-cookie-content h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 28px;
}

.site-cookie-content p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.site-cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-cookie-buttons button,
.site-cookie-buttons a {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

#acceptCookies {
  background: #ff7a00;
  color: #fff;
}

#declineCookies {
  background: #333;
  color: #fff;
}

.site-cookie-buttons a {
  background: #fff;
  color: #111;
}

.site-cookie-buttons button:hover,
.site-cookie-buttons a:hover {
  opacity: 0.85;
}

/* MOBILE COOKIE SECTION */

@media (max-width: 768px) {
  .site-cookie-content h3 {
    font-size: 24px;
  }

  .site-cookie-buttons {
    flex-direction: column;
    align-items: center;
  }

  .site-cookie-buttons button,
  .site-cookie-buttons a {
    width: 100%;
    max-width: 280px;
  }
}

/* REMOVE GAP BETWEEN COOKIE SECTION & FOOTER */

.site-cookie-section {
  margin-bottom: 0 !important;
  padding-bottom: 40px;
}

.site-footer {
  margin-top: 0 !important;
}

.site-cookie-section {
  background: #111;
  padding: 40px 20px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.08);
}

.site-footer {
  background: #000;
}

.blog-preview {
  max-width: 900px;
  margin: 120px auto 60px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.product-reviews {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 8px;
}

.review-author {
  font-size: 14px;
  font-weight: bold;
  color: #777;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: center;
  gap: 30px;
}
.product-card {
  max-width: 320px;
  margin: auto;
}

.review-btn {
  margin-top: 15px;
  padding: 10px 18px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6b81, #ff9f43);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.review-btn:hover {
  transform: scale(1.05);
}

/* REVIEW FORM */
.review-form {
  display: none;
  margin-top: 20px;
  text-align: left;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.review-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* SUBMIT BUTTON */
.submit-review {
  background: linear-gradient(135deg, #ff6b81, #ff9f43);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
}

/* REVIEW CARD */
.review-card {
  background: #fff7f8;
  padding: 15px;
  border-radius: 16px;
  margin-top: 15px;
  text-align: left;
}

.review-card h4 {
  margin-bottom: 5px;
}

.review-card .stars {
  color: gold;
  margin-bottom: 8px;
}

/* REVIEW SECTION */
.product-reviews {
  margin-top: 25px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* STARS */
.stars {
  color: #ffb400;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* REVIEW BUTTON */
.review-btn {
  background: linear-gradient(135deg, #ff6b81, #ff9f43);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 20px;
}

.review-btn:hover {
  transform: scale(1.05);
}

/* REVIEW FORM */
.review-form {
  display: none;
  margin-top: 15px;
}

/* INPUTS */
.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

/* TEXTAREA */
.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* SUBMIT BUTTON */
.submit-review {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6b81, #ff9f43);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-review:hover {
  transform: scale(1.03);
}

/* REVIEW CARDS */
.review-card {
  background: #fff7f8;
  padding: 18px;
  border-radius: 18px;
  margin-top: 20px;
  text-align: left;
}

.review-card h4 {
  margin-bottom: 8px;
  color: #222;
}

.review-card p {
  margin-top: 10px;
  color: #555;
}

/* MOBILE PRODUCT GRID */
@media (max-width: 768px) {
  .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-card {
    width: 100%;
  }
}

.newsletter-section {
  background: #ffe8ef;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 0px auto;
  max-width: 700px;
}

.newsletter-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.newsletter-section p {
  margin-bottom: 20px;
}

.newsletter-section form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-section input {
  padding: 12px;
  width: 260px;
  border: 2px solid #ff8fb1;
  border-radius: 10px;
}

.newsletter-section button {
  padding: 12px 20px;
  background: #ff4f87;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.success-message {
  margin-top: 15px;
  color: #ff4f87;
  font-weight: bold;
}

.success-message {
  text-align: center;
  margin-top: 20px;
  color: #ff4f87;
  font-weight: bold;
}

.dashboard {
  max-width: 1100px;
  margin: auto;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 40px;
}

.dashboard-header h1 {
  font-size: 3rem;
  color: #ff4f87;
}

.dashboard-page {
  background: #fff5f8;
  padding: 40px;
  min-height: 100vh;
}

.stats-box {
  background: white;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stats-box h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #ff4f87;
}

.subscribers-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.subscribers-table th {
  background: #ff4f87;
  color: white;
  padding: 15px;
  text-align: left;
}

.subscribers-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.subscribers-table tr:hover {
  background: #fff0f5;
}

.delete-btn {
  background: #ff4f87;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

.delete-btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .dashboard-header h1 {
    font-size: 2rem;
  }

  .subscribers-table th,
  .subscribers-table td {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* =========================================
   CHECKOUT / CANCEL / ORDERS PAGES
========================================= */

.success-page,
.cancel-page,
.orders-box {
  text-align: center;
  padding: 60px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.success-page h1,
.cancel-page h1 {
  margin-bottom: 20px;
}

.success-page p,
.cancel-page p,
.orders-box p {
  margin-bottom: 20px;
  line-height: 1.8;
}
