* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}

body {
  background-color: #FFF8E6;
  /* width: 1200px; */
  margin: auto;
}

/* 1. Infinite Scroll Bar */
.he-announcement-bar {
  background-color: #444D3C;
  color: white;
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.he-scroll-track {
  display: inline-block;
  animation: he-scroll 20s linear infinite;
}

.he-scroll-track span {
  display: inline-block;
  padding: 0 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

@keyframes he-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 2. Navigation */
.he-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #FFF8E6;
}

.he-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.he-logo-text {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
  margin-top: 5px;
}

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

.he-nav-links a, .he-dropdown {
  text-decoration: none;
  color: var(--he-text-black);
  font-size: 15px;
  cursor: pointer;
}

.he-dropdown::after {
  content: ' \25BE';
  font-size: 12px;
}
/* ===========================
   MOBILE HEADER BASE
=========================== */

.he-mobile-header {
  display: none;
  background: #FFF8E6;
  border-bottom: 1px solid #ddd;
}

.he-mobile-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
}

/* Logo */
.he-mobile-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Toggle */
.he-mobile-toggle {
  display: none;
}

/* Hamburger */
.he-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.he-hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* ===========================
   SIDEBAR
=========================== */

.he-mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100vh;
  background: #FFF8E6;
  padding: 70px 20px 20px;
  transition: 0.35s ease;
  z-index: 999;
}

/* Open sidebar */
.he-mobile-toggle:checked ~ .he-mobile-sidebar {
  left: 0;
}

/* Close button */
.he-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}

/* Links */
.he-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.he-mobile-links li {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.he-mobile-links a {
  text-decoration: none;
  color: #000;
}

/* Cart */
.he-mobile-cart {
  margin-top: 30px;
}

/* ===========================
   RESPONSIVE SWITCH
=========================== */

@media (max-width: 991px) {
  .he-main-container {
    display: none;
  }

  .he-mobile-header {
    display: block;
  }
}

/* 3. Hero Section */
.he-hero-section {
  padding: 0 4% 40px;
}

.he-hero-image-wrapper {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  border-radius: 4px; /* Slight rounding like the reference */
}

.he-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 4. Responsiveness */
@media (max-width: 768px) {
  .he-nav-links {
    display: none; /* In a real app, you'd trigger a hamburger menu here */
  }
  
  .he-hero-image-wrapper {
    height: 50vh;
  }
  
  .he-scroll-track span {
    padding: 0 20px;
    font-size: 12px;
  }
}
/* Trending Products */
.tp-section-container {
  background-color: var(--tp-bg);
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

/* Header Styles */
.tp-header {
  margin-bottom: 50px;
}

.tp-subheading {
  font-size: 16px;
  color: var(--tp-text-dark);
  margin-bottom: 15px;
}

.tp-main-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--tp-text-dark);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.tp-description {
  font-size: 18px;
  color: var(--tp-text-muted);
}

/* Grid Layout */
.tp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card Styles */
.tp-product-card {
  display: flex;
  flex-direction: column;
}

.tp-image-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.tp-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tp-product-card:hover .tp-image-container img {
  transform: scale(1.05);
}

.tp-product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tp-price {
  font-size: 14px;
  color: var(--tp-text-muted);
}

.tp-product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--tp-text-dark);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .tp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tp-product-grid {
    grid-template-columns: 1fr;
  }
  
  .tp-main-heading {
    font-size: 32px;
  }
  
  .tp-section-container {
    padding: 40px 5%;
  }
}
/* Home CTA */
.he-cta-outer-wrapper {
  background-color: #FFF8E6;
  padding: 60px 5%;
  font-family: 'Inter', sans-serif;
}

.he-cta-inner-card {
  background-color: #444D3C;
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: white;
}

/* Text Content Area */
.he-cta-content {
  flex: 1;
  max-width: 500px;
}

.he-cta-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.he-cta-text {
  color: white;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Form Area */
.he-cta-form-container {
  flex: 1;
  max-width: 450px;
}

.he-cta-form {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.he-cta-input {
  flex-grow: 1;
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.he-cta-button {
  background-color: #FFF8E6;
  color: #1a1a1a;
  border: none;
  padding: 0 35px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.he-cta-button:hover {
  opacity: 0.9;
}

.he-cta-disclaimer {
  color: white;
  font-size: 12px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .he-cta-inner-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px;
  }
  
  .he-cta-form-container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .he-cta-title {
    font-size: 32px;
  }
  
  .he-cta-form {
    flex-direction: column;
  }
  
  .he-cta-button {
    padding: 16px;
  }
  
  .he-cta-inner-card {
    padding: 40px 20px;
  }
}
/* --- Why Choose Us Section --- */
.he-wcu-container {
  display: flex;
  background-color: #FDF8E9;
  padding: 80px 5%;
  align-items: center;
  gap: 60px;
}

.he-wcu-main-title {
  font-size: 48px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 25px;
}

.he-wcu-intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: #757575;
  margin-bottom: 45px;
}

.he-wcu-feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.he-wcu-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}

.he-wcu-feature-desc {
  font-size: 15px;
  color: #757575;
}

.he-wcu-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
/* --- Lighting Products Section --- */
.lp-section-container {
  background-color: #FDF8E9;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.lp-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.lp-main-heading {
  font-size: 64px; /* Large heading per screenshot */
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.lp-description {
  font-size: 18px;
  color: #757575;
}

.lp-view-all-btn {
  background-color: #3D4A3E;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.lp-view-all-btn:hover {
  opacity: 0.9;
}

/* Grid & Cards */
.lp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.lp-image-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.lp-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lp-product-card:hover .lp-image-container img {
  transform: scale(1.05);
}
.lp-price {
  font-size: 14px;
  color: #757575;
  margin-bottom: 5px;
}

.lp-product-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .lp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-main-heading {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .lp-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .lp-product-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Chair Products Section --- */
.cp-section-container {
  background-color: #FDF8E9; /* Light Cream */
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.cp-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.cp-main-heading {
  font-size: 64px;
  font-weight: 700;
  color: #1A1A1A; /* Dark Gray/Black */
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.cp-description {
  font-size: 18px;
  color: #757575; /* Muted Gray */
}

.cp-view-all-btn {
  background-color: #3D4A3E; /* Brand Green */
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cp-view-all-btn:hover {
  background-color: #2D382E;
}

/* Grid & Cards */
.cp-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cp-image-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 15px;
}

.cp-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cp-product-card:hover .cp-image-container img {
  transform: scale(1.05);
}
.cp-price {
  font-size: 14px;
  color: #757575;
  margin-bottom: 5px;
}

.cp-product-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .cp-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cp-main-heading {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .cp-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cp-product-grid {
    grid-template-columns: 1fr;
  }
  .cp-main-heading {
    font-size: 36px;
  }
}
/* --- Blog Section --- */
.bp-section-container {
  background-color: #FDF8E9;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.bp-header {
  margin-bottom: 50px;
}

.bp-eyebrow {
  font-size: 16px;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.bp-main-heading {
  font-size: 56px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.bp-description {
  font-size: 18px;
  color: #757575;
  max-width: 600px;
  line-height: 1.5;
}

/* Grid Layout */
.bp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.bp-post-card {
  display: flex;
  flex-direction: column;
}

.bp-image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 20px;
}

.bp-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bp-post-card:hover .bp-image-wrapper img {
  transform: scale(1.03);
}

/* Metadata Labels */
.bp-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.bp-category {
  background-color: #3D4A3E; /* Brand Green */
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
}

.bp-read-time {
  font-size: 14px;
  color: #1A1A1A;
}

.bp-post-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}

/* Footer & View All */
.bp-footer {
  display: flex;
  justify-content: flex-end;
}

.bp-view-all-btn {
  background-color: #3D4A3E;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.bp-view-all-btn:hover {
  opacity: 0.9;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .bp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bp-main-heading {
    font-size: 42px;
  }
}

@media (max-width: 650px) {
  .bp-blog-grid {
    grid-template-columns: 1fr;
  }
  .bp-main-heading {
    font-size: 36px;
  }
  .bp-footer {
    justify-content: center;
  }
}
/* --- Footer Section --- */
.he-ft-container {
  background-color: #3D4A3E; /* Brand Green */
  color: #FFFFFF;
  padding: 80px 5% 40px;
  font-family: 'Inter', sans-serif;
}

.he-ft-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

/* Brand Column */
.he-ft-brand {
  flex: 1;
  min-width: 200px;
}

.he-ft-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.he-ft-logo-text {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 20px;
}

/* Links Columns */
.he-ft-links-group {
  display: flex;
  gap: 80px;
  flex: 2;
}

.he-ft-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #F2EDE4; /* Light Cream */
}

.he-ft-list {
  list-style: none;
  padding: 0;
}

.he-ft-list li {
  margin-bottom: 15px;
}

.he-ft-list a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.he-ft-list a:hover {
  opacity: 1;
}

/* Subscribe Column */
.he-ft-subscribe {
  flex: 2;
  max-width: 400px;
}

.he-ft-sub-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.he-ft-form {
  display: flex;
  gap: 10px;
}

.he-ft-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  font-size: 14px;
  outline: none;
}

.he-ft-btn {
  background-color: #F2EDE4; /* Light Cream */
  color: #3D4A3E;
  border: none;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* Bottom Section */
.he-ft-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.he-ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.he-ft-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.he-ft-legal a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.7;
}

.he-ft-socials {
  display: flex;
  gap: 20px;
}

.he-ft-socials a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.he-ft-copyright {
  text-align: left;
  font-size: 12px;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .he-ft-links-group { gap: 40px; }
}

@media (max-width: 768px) {
  .he-ft-top { flex-direction: column; }
  .he-ft-links-group { flex-direction: row; justify-content: space-between; }
  .he-ft-subscribe { max-width: 100%; }
}

@media (max-width: 480px) {
  .he-ft-links-group { flex-direction: column; }
  .he-ft-form { flex-direction: column; }
  .he-ft-btn { padding: 12px; }
}
/* --- Shop Hero Section --- */
.sh-hero-container {
  background-color: #FDF8E9; /* Cream Background */
  padding: 100px 5% 0; /* Padding top for spacing, 0 bottom to let divider sit */
  font-family: 'Inter', sans-serif;
}

.sh-content-wrapper {
  max-width: 800px; /* Aligned to the left as per screenshot */
  margin-bottom: 80px;
}

.sh-eyebrow {
  color: #A3CCE3; /* Light Blue/Teal accent color */
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.sh-main-title {
  color: #1A1A1A; /* Dark Gray/Black */
  font-size: 82px; /* Large statement heading */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.sh-description {
  color: #757575; /* Muted Gray */
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 700px;
}

/* Button Navigation Group */
.sh-button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.sh-btn {
  text-decoration: none;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

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

.sh-btn-black {
  background-color: #101010; /* Pure Black */
  color: #FFFFFF;
}

.sh-btn-olive {
  background-color: #3D4A3E; /* Brand Green */
  color: #FFFFFF;
}

/* Bottom Border Divider */
.sh-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: #1A1A1A; /* Solid dark line */
  margin-top: 20px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .sh-main-title {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .sh-hero-container {
    padding-top: 60px;
  }
  .sh-main-title {
    font-size: 48px;
    letter-spacing: -1px;
  }
  .sh-description {
    font-size: 18px;
  }
  .sh-btn {
    width: 100%; /* Stack buttons on mobile */
    text-align: center;
  }
}
/* --- All Products Section with Hover Effects --- */
.he-ap-container {
  background-color: #FDF8E9;
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.he-ap-header {
  margin-bottom: 60px;
}

.he-ap-eyebrow {
  color: #8BBCCF;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.he-ap-main-title {
  color: #1A1A1A;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Grid Configuration */
.he-ap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 25px;
}

.he-ap-card {
  display: flex;
  flex-direction: column;
  cursor: pointer; /* Indicates interactivity */
}

/* --- Added Animation Logic --- */
.he-ap-img-box {
  aspect-ratio: 1 / 1.2;
  overflow: hidden; /* Clips the zoomed image */
  margin-bottom: 18px;
  background-color: #f2f2f2; /* Subtle placeholder while loading */
}

.he-ap-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Smooth transition for the zoom effect */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Zoom effect on hover */
.he-ap-card:hover .he-ap-img-box img {
  transform: scale(1.1);
}

.he-ap-price {
  font-size: 14px;
  color: #757575;
  margin-bottom: 6px;
}

.he-ap-name {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  transition: color 0.3s ease;
}

/* Optional: Slight color shift for title on hover */
.he-ap-card:hover .he-ap-name {
  color: #3D4A3E; /* Shifts to Brand Green on hover */
}

/* Responsive Scaling */
@media (max-width: 1100px) {
  .he-ap-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .he-ap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .he-ap-grid { grid-template-columns: 1fr; }
}
/* --- Blog Hero Section --- */
.bh-hero-container {
  background-color: #FDF8E9; /* Cream Background from screenshots */
  padding: 100px 5% 0;
  font-family: 'Inter', sans-serif;
}

.bh-content-wrapper {
  max-width: 850px;
  margin-bottom: 80px;
}

.bh-eyebrow {
  color: #A3CCE3; /* Light Blue accent seen in Shop/Blog Hero */
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.bh-main-title {
  color: #1A1A1A;
  font-size: 82px; /* Oversized heading */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.bh-description {
  color: #757575; /* Muted Gray from design */
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 45px;
}

/* Category Navigation */
.bh-button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.bh-btn {
  text-decoration: none;
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bh-btn-black {
  background-color: #101010;
  color: #FFFFFF;
}

.bh-btn-olive {
  background-color: #3D4A3E; /* Signature Dark Green */
  color: #FFFFFF;
}

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

/* Bottom Border */
.bh-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  margin-top: 20px;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .bh-main-title { font-size: 60px; }
}

@media (max-width: 768px) {
  .bh-main-title { font-size: 44px; letter-spacing: -1px; }
  .bh-description { font-size: 18px; }
  .bh-btn { width: 100%; text-align: center; }
}
/* --- Recent Blog Section --- */
.he-rb-container {
  background-color: #FDF8E9; /* Cream Background */
  padding: 60px 5% 100px;
  font-family: 'Inter', sans-serif;
}

.he-rb-header {
  margin-bottom: 50px;
}

.he-rb-eyebrow {
  color: #8BBCCF; /* Signature Light Blue Accent */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.he-rb-main-title {
  color: #1A1A1A;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.he-rb-sub-desc {
  color: #757575;
  font-size: 16px;
}

/* Grid Configuration */
.he-rb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Columns for Blog Posts */
  gap: 50px 30px;
}

.he-rb-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* --- Image Container & Hover Animation --- */
.he-rb-img-box {
  aspect-ratio: 16 / 10;
  overflow: hidden; /* Clips the zoom effect */
  margin-bottom: 20px;
}

.he-rb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Smooth interaction transition */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.he-rb-card:hover .he-rb-img-box img {
  transform: scale(1.08); /* Minimalist zoom effect */
}

/* Metadata & Badges */
.he-rb-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.he-rb-badge {
  background-color: #3D4A3E; /* Brand Green */
  color: #FFFFFF;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.he-rb-time {
  font-size: 13px;
  color: #1A1A1A;
}

.he-rb-post-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.he-rb-card:hover .he-rb-post-title {
  color: #3D4A3E; /* Brand Highlight on Title */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .he-rb-grid { grid-template-columns: repeat(2, 1fr); }
  .he-rb-main-title { font-size: 38px; }
}

@media (max-width: 650px) {
  .he-rb-grid { grid-template-columns: 1fr; }
  .he-rb-main-title { font-size: 32px; }
}
/* --- Blog Detail Hero --- */
.bd-hero-container {
  background-color: #FDF8E9; /* Cream Background */
  display: flex;
  align-items: center;
  padding: 100px 5%;
  gap: 60px;
  font-family: 'Inter', sans-serif;
}

/* Text Column */
.bd-content-column {
  flex: 1;
}

.bd-breadcrumbs {
  font-size: 16px;
  color: #757575; /* Muted Gray */
  margin-bottom: 30px;
}

.bd-breadcrumbs a {
  color: #757575;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bd-breadcrumbs a:hover {
  color: #1A1A1A;
}

.bd-main-title {
  font-size: 72px; /* Prominent editorial title */
  font-weight: 700;
  color: #1A1A1A; /* Dark Gray/Black */
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.bd-author-meta {
  border-left: 3px solid #3D4A3E; /* Brand Green Accent */
  padding-left: 20px;
}

.bd-author-name {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 5px;
}

.bd-publish-info {
  font-size: 15px;
  color: #757575;
}

/* Image Column */
.bd-image-column {
  flex: 1.2;
}

.bd-featured-img-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}

.bd-featured-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Premium Zoom Animation Logic */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Effect for Featured Image */
.bd-hero-container:hover .bd-featured-img-wrapper img {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bd-hero-container {
    flex-direction: column;
    padding: 60px 5%;
    text-align: left;
  }
  .bd-main-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .bd-main-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
}
/* --- Blog Content Section --- */
.bd-c-container {
  background-color: #FDF8E9; /* Brand Cream */
  padding: 60px 5% 100px;
  font-family: 'Inter', sans-serif;
}

.bd-c-inner {
  max-width: 800px; /* Centered content column */
  margin: 0 auto;
}

.bd-c-subheading {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 50px 0 25px;
  line-height: 1.2;
}

.bd-c-paragraph {
  font-size: 18px;
  line-height: 1.7;
  color: #757575; /* Muted gray for body text */
  margin-bottom: 30px;
}

/* Quote styling with vertical line */
.bd-c-quote {
  border-left: 3px solid #3D4A3E; /* Brand Green Accent */
  padding: 10px 0 10px 30px;
  margin: 40px 0;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: #757575;
}

/* Social Sharing Section */
.bd-c-share {
  margin-top: 80px;
  padding-top: 40px;
}

.bd-c-share-label {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
}

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

.bd-c-social-links a {
  color: #1A1A1A;
  transition: color 0.3s ease, transform 0.2s ease;
}

.bd-c-social-links a:hover {
  color: #3D4A3E; /* Brand Green hover */
  transform: translateY(-3px);
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .bd-c-subheading { font-size: 26px; }
  .bd-c-paragraph { font-size: 16px; }
  .bd-c-quote { font-size: 18px; padding-left: 20px; }
}
/* --- Related Blog Section --- */
.he-rel-container {
  background-color: #FDF8E9; /* Brand Cream */
  padding: 80px 5%;
  font-family: 'Inter', sans-serif;
}

.he-rel-header {
  margin-bottom: 50px;
}

.he-rel-eyebrow {
  color: #8BBCCF; /* Signature Light Blue Accent */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.he-rel-main-title {
  color: #1A1A1A;
  font-size: 56px; /* Matching the large 'Consider Exploring' title */
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

.he-rel-sub-desc {
  color: #757575;
  font-size: 18px;
  max-width: 650px;
  line-height: 1.5;
}

/* Grid Configuration */
.he-rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 column layout for related posts */
  gap: 30px;
  margin-bottom: 40px;
}

.he-rel-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* --- Interactive Image Animation --- */
.he-rel-img-box {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 20px;
}

.he-rel-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.he-rel-card:hover .he-rel-img-box img {
  transform: scale(1.1); /* Smooth zoom on hover */
}

/* Meta & Text Styles */
.he-rel-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.he-rel-badge {
  background-color: #3D4A3E; /* Brand Dark Green */
  color: #FFFFFF;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
}

.he-rel-time {
  font-size: 13px;
  color: #1A1A1A;
}

.he-rel-post-title {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.3;
}

/* Footer / View All Button */
.he-rel-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.he-rel-view-btn {
  background-color: #3D4A3E; /* Brand Green */
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 35px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.he-rel-view-btn:hover {
  opacity: 0.9;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .he-rel-grid { grid-template-columns: repeat(2, 1fr); }
  .he-rel-main-title { font-size: 42px; }
}

@media (max-width: 650px) {
  .he-rel-grid { grid-template-columns: 1fr; }
}
/* --- Contact Page Container --- */
.he-con-container {
  background-color: #FDF8E9; /* Brand Cream */
  padding: 100px 5%;
  font-family: 'Inter', sans-serif;
}

/* --- Hero Section --- */
.he-con-hero {
  margin-bottom: 80px;
}

.he-con-eyebrow {
  color: #8BBCCF; /* Signature Light Blue Accent */
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.he-con-title {
  color: #1A1A1A;
  font-size: 82px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.he-con-scroll-text {
  color: #757575;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Navigation Buttons */
.he-con-nav-buttons {
  display: flex;
  gap: 15px;
}

.he-con-btn {
  background-color: #4A5443; /* Olive Green from screenshot */
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.he-con-btn:hover {
  opacity: 0.9;
}

.he-con-divider {
  border: 0;
  height: 1px;
  background-color: #1A1A1A;
  margin: 60px 0 80px;
}

/* --- Info Grid --- */
.he-con-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.he-con-item {
  display: flex;
  flex-direction: column;
}

.he-con-icon {
  color: #1A1A1A;
  margin-bottom: 25px;
}

.he-con-label {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.he-con-desc {
  color: #757575;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1; /* Ensures links align at bottom */
}

.he-con-link {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
  .he-con-grid { grid-template-columns: repeat(2, 1fr); }
  .he-con-title { font-size: 60px; }
}

@media (max-width: 600px) {
  .he-con-grid { grid-template-columns: 1fr; }
  .he-con-title { font-size: 48px; }
  .he-con-nav-buttons { flex-direction: column; }
}
/* --- Product Detail Section --- */
.pd-container {
  background-color: #FDF8E9; /* Brand Cream */
  padding: 80px !important;
  font-family: 'Inter', sans-serif;
}

.pd-inner {
  display: flex;
  gap: 80px;
  /* max-width: 1400px; */
  margin: 0 auto;
}

/* Image Column */
.pd-image-box {
  flex: 1.1;
}

.pd-image-box img {
  width: 100%;
  height: 900px;
  display: block;
}

/* Content Column */
.pd-info-box {
  flex: 0.9;
}

.pd-breadcrumbs {
  font-size: 14px;
  color: #757575;
  margin-bottom: 25px;
}
.pd-breadcrumbs a{
  color: #757575;
}

.pd-title {
  font-size: 64px; /* Bold statement title */
  color: #1A1A1A;
  margin-bottom: 15px;
  letter-spacing: -1.5px;
}

.pd-pricing {
  margin-bottom: 20px;
}

.pd-old-price {
  color: #757575;
  text-decoration: line-through;
  margin-right: 10px;
  font-size: 18px;
}

.pd-current-price {
  color: #8BBCCF; /* Signature Light Blue Accent */
  font-size: 32px;
  font-weight: 700;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.pd-stars { color: #FFD700; font-size: 20px; }
.pd-reviews-count { color: #757575; font-size: 14px; }

.pd-description {
  color: #757575;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Purchase Controls */
.pd-quantity-wrap {
  margin-bottom: 25px;
}

.pd-q-label { display: block; margin-bottom: 10px; font-weight: 500; }

.pd-q-controls {
  display: flex;
  align-items: center;
  background: #F1F1F1;
  width: fit-content;
}

.pd-q-val { padding: 15px 30px; font-weight: 700; }

.pd-q-btns { display: flex; flex-direction: column; }
.pd-q-btns button {
  border: none;
  background: #101010;
  color: white;
  width: 25px;
  cursor: pointer;
}

.pd-add-btn {
  width: 100%;
  padding: 20px;
  background-color: #3D4A3E; /* Brand Dark Green */
  color: white;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 50px;
  transition: opacity 0.3s ease;
}

/* Accordion Styling */
.pd-acc-item {
  border-top: 1px solid #1A1A1A;
  padding: 20px 0;
}

.pd-acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  cursor: pointer;
  text-align: left;
}

.pd-acc-content {
  color: #757575;
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .pd-inner { flex-direction: column; }
  .pd-title { font-size: 48px; }
}
/* --- Cart Sidebar Drawer --- */
.he-cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dimmed background */
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.he-cart-sidebar {
  width: 450px;
  max-width: 90%;
  height: 100%;
  background-color: #FDF8E9; /* Brand Cream */
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  font-family: 'Inter', sans-serif;
}

/* Header */
.he-cart-header {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.he-cart-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
}

.he-cart-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1A1A1A;
}

/* Item List */
.he-cart-items {
  flex-grow: 1;
  padding: 0 30px;
  overflow-y: auto;
}

.he-cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.he-cart-img-box {
  width: 80px;
  height: 80px;
  background-color: #f2f2f2;
}

.he-cart-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.he-cart-item-details {
  flex-grow: 1;
}

.he-cart-item-name {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 5px;
}

.he-cart-item-price {
  font-size: 16px;
  color: #757575;
}

/* Quantity Controls - Matching PDP style */
.he-cart-q-controls {
  display: flex;
  align-items: center;
  background: #ECE9DE; /* Slightly darker cream for UI */
}

.he-cart-q-val { padding: 10px 15px; font-weight: 700; }

.he-cart-q-btns { display: flex; flex-direction: column; }
.he-cart-q-btns button {
  border: none;
  background: #101010;
  color: white;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 12px;
}

/* Footer Section */
.he-cart-footer {
  background-color: #3D4A3E; /* Brand Dark Green */
  padding: 30px;
  color: #FFFFFF;
}

.he-cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 25px;
}

.he-cart-total-price {
  font-weight: 700;
}

.he-cart-checkout-btn {
  width: 100%;
  padding: 18px;
  background-color: #FFFFFF;
  color: #1A1A1A;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.he-cart-checkout-btn:hover {
  opacity: 0.9;
}
/* --- Checkout EXACT Match Styles --- */
.he-ch-container {
  background-color: #FDF8E9; /* Exact Brand Cream */
  display: flex;
  padding: 80px;
  gap: 80px;
  font-family: 'Inter', sans-serif;
}

.he-ch-form-column { flex: 1.6; }
.he-ch-sidebar { flex: 1; }

.he-ch-breadcrumbs {
  font-size: 13px;
  color: #757575;
  margin-bottom: 40px;
}

.he-ch-section-title {
  font-size: 40px; /* Large heading match */
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 30px;
}

/* Form Styling - White inputs on Cream bg */
.he-ch-input {
  width: 100%;
  padding: 16px;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  margin-bottom: 15px;
  font-size: 15px;
  box-sizing: border-box;
}

.he-ch-row {
  display: flex;
  gap: 15px;
}

.he-ch-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1A1A1A;
  margin-bottom: 12px;
  cursor: pointer;
}

/* Shipping & Payment Box styling */
.he-ch-method-box{
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  padding: 20px;
  margin-bottom: 20px;
}

.he-ch-free-text { font-weight: 700; }

.he-ch-sub-desc {
  color: #757575;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Sidebar Styling - Dark Olive Summary */
.he-ch-summary-box {
  background-color: #4A5443; /* Exact Brand Green */
  color: #FFFFFF;
  padding: 40px;
  position: sticky;
  top: 20px;
}

.he-ch-summary-header {
  font-size: 24px;
  margin-bottom: 30px;
}

.he-ch-cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.he-ch-cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.he-ch-qty-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 2px;
}

.he-ch-summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 25px 0;
}

.he-ch-summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}

.he-ch-total {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.he-ch-submit-btn {
  width: 100%;
  padding: 22px;
  background-color: #4A5443; /* Match sidebar */
  color: #FFFFFF;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .he-ch-container { flex-direction: column; padding: 40px 5%; }
}
/* --- Payment Section Specifics --- */
.he-ch-payment-box {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.he-ch-payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #F9F9F9; /* Light grey header as seen in Shopify-style checkouts */
  border-bottom: 1px solid #EAEAEA;
}

.he-ch-radio-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.he-ch-card-logos {
  display: flex;
  gap: 8px;
}

.he-ch-card-logos img {
  height: 20px; /* Precise height for logos */
  width: auto;
  filter: grayscale(0.2);
}

.he-ch-payment-body {
  padding: 20px;
  background: #FFFFFF;
}

/* Icons inside inputs */
.he-ch-input-wrapper {
  position: relative;
  width: 100%;
}

.he-ch-input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-80%); /* Adjusted for margin-bottom of input */
  color: #757575;
  font-size: 14px;
}

.he-ch-billing-check {
  margin-top: 20px;
  font-size: 14px;
  color: #1A1A1A;
}

/* Overriding default row for the nested payment fields */
.he-ch-payment-body .he-ch-row {
  display: flex;
  gap: 12px;
}
/* --- Thank You Page Styles --- */
.he-ty-container {
  background-color: #FDF8E9; /* Brand Cream */
  display: flex;
  padding: 80px;
  gap: 60px;
  font-family: 'Inter', sans-serif;
}

.he-ty-main { flex: 1.6; }
.he-ty-sidebar { flex: 1; }

.he-ty-breadcrumbs {
  font-size: 13px;
  color: #757575;
  margin-bottom: 50px;
}

/* Header */
.he-ty-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.he-ty-check-circle {
  width: 40px;
  height: 40px;
  border: 2px solid #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.he-ty-title {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
}

.he-ty-order-number {
  color: #757575;
  margin: 5px 0 0;
}

/* Status Section */
.he-ty-status-box {
  margin-bottom: 60px;
}

.he-ty-status-item { padding: 20px 0; }
.he-ty-status-label { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.he-ty-status-desc { font-size: 15px; color: #1A1A1A; margin: 0; }
.he-ty-status-divider { height: 1px; background: #EAEAEA; }

.he-ty-flex { display: flex; align-items: center; gap: 15px; }

/* Order Details Grid */
.he-ty-details-title { font-size: 42px; font-weight: 700; margin-bottom: 40px; }

.he-ty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.he-ty-col-label { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.he-ty-col-value { font-size: 15px; color: #757575; line-height: 1.6; margin: 0; }

/* Sidebar Summary */
.he-ty-summary-box {
  background-color: #4A5443; /* Exact Olive Green */
  color: #FFFFFF;
  padding: 40px;
}

.he-ty-cart-item { display: flex; align-items: center; gap: 20px; }

.he-ty-img-wrap { position: relative; }
.he-ty-img-wrap img { width: 70px; height: 70px; object-fit: cover; }
.he-ty-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  background: white;
  color: #1A1A1A;
  font-size: 12px;
  padding: 2px 8px;
  font-weight: 700;
}

.he-ty-item-name { font-weight: 700; margin: 0; }
.he-ty-item-price { font-size: 14px; opacity: 0.8; margin: 5px 0 0; }

.he-ty-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 25px 0; }

.he-ty-row { display: flex; justify-content: space-between; margin-bottom: 15px; }
.he-ty-total { font-size: 20px; font-weight: 700; padding-top: 10px; }

.he-ty-continue-btn {
  width: 100%;
  padding: 20px;
  background-color: #4A5443;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .he-ty-container { flex-direction: column; }
  .he-ty-grid { grid-template-columns: 1fr; }
}
