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

/* WOW.js 滚动动画全局配置 */
:root {
  --animate-duration: 0.6s;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f5f0e6;
}

h1,
h2,
h3 {
  font-family: "OPTIDanley-Medium", serif;
  font-weight: 100;
}
button{
  font-family: "Arial", sans-serif;
}

.details-title{
  max-width: 32%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.image-placeholder {
  border: none;
  position: relative;
  overflow: hidden;
}

.purchase-img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.btn-shop-now,
.btn-buy-now,
.btn-add-to-cart,
.btn-cta {
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  /* font-weight: bold; */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-shop-now {
  background-color: #8b9a46;
  color: white;
  border-radius: 25px;
  padding: 10px 15px;
  font-size: 0.8rem;
}

.btn-shop-now:hover {
  background-color: #6b7a36;
}

.btn-shop-now:active,
.btn-shop-now:focus {
  outline: none;
  background-color: #8b9a46 !important;
  box-shadow: none;
}

.btn-shop-now:focus-visible {
  outline: 2px solid #8b9a46;
  outline-offset: 2px;
}

.btn-buy-now {
  background-color: #ff6b8a;
  color: white;
  border-radius: 5px;
  width: 100%;
  padding: 15px;
  font-size: 1.3rem;
}

  .fire-title {
    font-size: 0.9rem;
    color: #222;
  }

.btn-buy-now:hover {
  background-color: #e55a7a;
}

.btn-add-to-cart {
  background-color: #8b9a46;
  color: white;
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 1.1rem;
}

.btn-add-to-cart:hover {
  background-color: #6b7a36;
}

.btn-cta {
  background-color: #ff6b8a;
  color: white;
  border-radius: 25px;
  padding: 15px 40px;
  font-size: 2rem;
}

.btn-cta.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

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

.btn-cta:active,
.btn-cta:focus {
  outline: none;
  background-color: #ff6b8a !important;
  box-shadow: none;
}

.btn-cta:focus-visible {
  outline: 2px solid #ff6b8a;
  outline-offset: 2px;
}

.hero {
  background: url("./4.jpg?v=1002") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
  padding-left: 40px;
}

.hero h1 {
  font-size: 7rem;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 0.9;
  color: white;
  font-family: "OPTIDanley", Georgia, serif;
}

.hero-content .hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 35px;
  font-weight: 400;
  letter-spacing: 1.5px;
  background-color: #5a6b2f;
  color: white;
  padding: 14px 50px;
  border-radius: 40px;
  display: inline-block;
  max-width: fit-content;
}

.hero-description {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 50px;
  max-width: 480px;
  line-height: 1.9;
  opacity: 0.98;
  font-weight: 300;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 0.85rem;
  text-align: center;
  max-width: 130px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #8b9a46;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 5px;
}

.feature-icon i {
  font-size: 18px;
}

.hero-image {
  display: none;
}

.hero-main-img {
  display: none;
}

.features-section {
  background-color: #fdf8f0;
  padding: 80px 40px;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: flex-start;
}

.features-left {
  max-width: 400px;
}

.features-left-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}

.features-left-title h2 {
  font-size: 2.5rem;
  color: #4a5d4c;
  /* font-weight: bold; */
  line-height: 1.2;
  margin: 0;
}

.features-left-title img {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-bottom: -8px;
}

.features-left-title:hover img {
  transform: rotate(-5deg) scale(1.1);
}

.features-intro {
  color: #5e5e5e;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.btn-shop-now {
  background-color: #899367;
  color: white;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-shop-now::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-shop-now:hover::before {
  left: 100%;
}

.btn-shop-now:hover {
  background-color: #6b7a36;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 154, 70, 0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid #d4d4d4;
}

.feature-card {
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid #d4d4d4;
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #6b7a36;
}

.feature-card .feature-title {
  font-size: 1.3rem;
  color: #465132;
  margin-bottom: 15px;
}

.feature-card p {
  color: #5e5e5e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-section {
  background-color: white;
  padding: 80px 20px;
}

.comparison-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.comparison-image {
  position: relative;
}

.comparison-img-container {
  width: 100%;
  overflow: hidden;
}

.comparison-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-img {
  width: 100%;
  height: 400px;
}

.comparison-text h2 {
  font-size: 3rem;
  color: #465132;
  margin-bottom: 20px;
  /* font-weight: bold; */
  line-height: 1.2;
}

.comparison-text p {
  color: #718096;
  font-size: 1.1rem;
  line-height: 1.8;
}

.size-section {
  background-color: white;
  padding: 80px 20px;
  text-align: center;
  padding-top: 0;
  padding-bottom: 20px;
}

.size-badge {
  color: #8b9a46;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.size-section h2 {
  font-size: 3rem;
  color: #465132;
  margin-bottom: 50px;
  /* font-weight: bold; */
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 0 auto;
}

.size-card {
  padding: 10px;
  background-color: #fdfaf4;
  border-radius: 10px;
  position: relative;
}

.size-card.featured {
  border: 2px solid #8b9a46;
}

.size-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8b9a46;
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 1.2rem;
}

.size-image {
  margin: 10px 0;
}

.size-sm-img,
.size-md-img,
.size-lg-img {
  width: 100%;
}

.size-dimensions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
}

.size-dimensions span {
  color: #718096;
  font-size: 0.9rem;
}

.size-note {
  color: #a0aec0;
  font-size: 0.8rem;
  margin-top: 30px;
}

.purchase-section {
  background-color: white;
  padding: 60px 20px;
}

.purchase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.purchase-image {
  position: relative;
  /* border: 4px solid #ff6b8a; */
  border-radius: 0px;
  overflow: hidden;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.product-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .product-image-wrapper {
    /* padding-bottom: 75%; */
  }
}

@media (max-width: 768px) {
  .product-image-wrapper {
    /* padding-bottom: 66.67%; */
  }
  .cart-wrapper{
    left: 30px;
  }

  .sale-badge-top {
    top: 10px;
    left: -5px;
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .sale-badge-circle {
    width: 110px;
    height: 110px;
    bottom: 15px;
    left: 15px;
  }

  .sale-percent {
    font-size: 2.2rem;
  }

  .sale-off {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .product-image-wrapper {
    /* padding-bottom: 75%; */
  }

  .sale-badge-top {
    top: 8px;
    left: -3px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .sale-badge-circle {
    width: 90px;
    height: 90px;
    bottom: 8px;
    left: 8px;
  }

  .sale-percent {
    font-size: 1.8rem;
  }

  .sale-off {
    font-size: 0.9rem;
  }
}

.purchase-img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}

.sale-badge-top {
  position: absolute;
  top: 20px;
  left: -10px;
  background: linear-gradient(135deg, #ffe5ec 0%, #ffb3c1 100%);
  color: #d63031;
  padding: 12px 25px;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 0 20px 20px 0;
  z-index: 10;
}

.sale-badge-circle {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #ff6b8a 0%, #ff8e53 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 107, 138, 0.4);
}

.sale-percent {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

.sale-off {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}

.sale-text {
  font-size: 0.75rem;
  margin-top: 5px;
  text-align: center;
}

.purchase-info {
  padding: 0px;
}

.purchase-info .product-title {
  color: #262626;
  font-size: 2rem;
  margin-bottom: 10px;
  /* font-family: "Noto Sans SC", sans-serif; */
}

.purchase-info .product-title i:first-child {
  color: #ffd93d;
}

.purchase-info .product-title i:last-child {
  color: #8b9a46;
}

.purchase-info p {
  color: #718096;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.price-section {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.current-price {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6b8a;
}

.original-price {
  font-size: 1.4rem;
  color: #a0aec0;
  text-decoration: line-through;
  margin-left: 15px;
}

.discount-badge {
  background: url(./9.png?v=1002) no-repeat center center;
  background-size: 100% 100%;
  color: white;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: bold;
  margin-left: 10px;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding-left: 30px;
  padding-top: 14px;
}

.discount-badge i {
  margin-right: 5px;
}

.options-section {
  margin-bottom: 30px;
}

.option-group {
  margin-bottom: 20px;
}

.option-label {
  display: block;
  color: #718096;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.option-buttons {
  display: flex;
  gap: 15px;
}

.sku-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sku-buttons .color-btn {
  padding: 10px 15px;
    font-size: 1rem;
    flex: 0 0 auto;
    white-space: nowrap;
}

.color-btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  background-color: #f5f5f5;
  color: #2d3748;
  cursor: pointer;
}

.color-btn.active,
.color-btn.shoppaas-sku-active {
  background-color: #ff6b8a;
  color: white;
  border-color: #ff6b8a;
}

.size-btn {
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
  background-color: #f5f5f5;
  color: #2d3748;
}

.size-btn.active {
  background-color: #ff6b8a;
  color: white;
  border-color: #ff6b8a;
}

.size-btn.active i {
  margin-right: 5px;
}

.quantity-control-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  height: 50px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  overflow: hidden;
  height: 50px;
}

.qty-btn {
  width: 50px;
  height: 100%;
  border: none;
  background-color: white;
  font-size: 1.4rem;
  cursor: pointer;
  color: #2d3748;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background-color: #f5f5f5;
}

.qty-value {
  font-size: 1.3rem;
  font-weight: bold;
  width: 100px;
  text-align: center;
  padding: 12px 0;
      border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.btn-add-to-cart {
  flex: 1;
  height: 100%;
  border: none;
  background-color: #8b9a46;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add-to-cart:hover {
  background-color: #6b7a36;
}

.btn-add-to-cart i {
  margin-right: 8px;
}

.stock-alert {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffe5ec;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.alert-icon {
  font-size: 1.5rem;
  color: #ff6b8a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}



.countdown {
  display: flex;
  align-items: start;
  gap: 8px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.countdown-number {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2d3748;
  background-color: white;
  padding: 0px 10px;
  border-radius: 5px;
  min-width: 35px;
  text-align: center;
}

.countdown-label {
  font-size: 0.6rem;
  color: #ff6b8a;
  margin-top: 3px;
  text-align: center;
}

.countdown-separator {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2d3748;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  line-height: 1;
  padding-top: 5px;
}

.btn-buy-now {
  width: 100%;
  height: 60px;
  background-color: #ff6b8a;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-buy-now:hover {
  background-color: #e55a7a;
}

.countdown {
  margin-left: auto;
  color: white;
  padding: 0px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.klarna-image {
  display: block;
  width: 100%;
  margin: 15px auto 0;
  border-radius: 8px;
}

.payment-methods {
  margin-top: 20px;
}

.payment-img {
  width: 100%;
  height: 40px;
  background-color: #f7fafc;
  border-radius: 5px;
}

.video-section {
  background-color: #fdf8f0;
  padding: 80px 20px;
  text-align: center;
}

.section-badge {
  color: #8b9a46;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.video-section h2 {
  font-size: 3rem;
  color: #465132;
  margin-bottom: 15px;
  /* font-weight: bold; */
}

.section-intro {
  color: #5e5e5e;
  font-size: 1.2rem;
  margin: 0 auto 50px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .comparison-image{
  order: 1;
}
  .comparison-text{
  order: 0;
}
}

.video-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.video-gif-1,
.video-gif-2,
.video-gif-3 {
  width: 100%;
  height: 250px;
}

.video-element {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  background-color: #f5f5f5;
}

.video-card p {
  padding: 20px;
  color: #718096;
  font-size: 1rem;
}

.details-section {
  background: url("./10.jpg") no-repeat center center;
  background-size: cover;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.details-content {
  display: flex;
  align-items: center;
  gap: 40px;
  /* max-width: 1400px; */
  margin: 0 auto;
  width: 100%;
}

.details-grid {
  flex: 7;
}

.details-section h2 {
  font-size: 2.8rem;
  color: white;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}

.detail-card {
  text-align: center;
}

.detail-img-1,
.detail-img-2,
.detail-img-3 {
  width: 100%;
  /* height: 140px; */
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.detail-img-1 img,
.detail-img-2 img,
.detail-img-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-card h3 {
  color: rgb(193 205 139);
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.detail-img-1, .detail-img-2, .detail-img-3{
  margin-bottom: 0;
}

.detail-card p {
  color: white;
  font-size: 1.5rem;
  line-height: 1.5;
}

.cta-section {
  background-color: #f1f4ec;
  padding: 40px 40px;
  text-align: center;
  color: #2d3748;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-flower {
  position: absolute;
  bottom: -20px;
  width: 200px;
  height: auto;
  z-index: 1;
}

.cta-flower-left {
  left: -30px;
}

.cta-flower-right {
  right: -30px;
  transform: scaleX(-1);
}

.cta-flower img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  /* font-weight: bold; */
  position: relative;
  z-index: 2;
  color: #465132;
}

.cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  color: #889065;
}

.cta-section .btn-cta {
  background-color: #ff6b8a;
  color: white;
  border-radius: 25px;
  padding: 15px 40px;
  position: relative;
  z-index: 2;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.cart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
    top: 16px;
    left: 50px;
}

.cart-icon {
  width: 28px;
        height: 28px;
  object-fit: contain;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #000;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  /* transition: opacity 0.5s ease; */
}

.btn-divider {
  width: 2px;
  height: 30px;
  background-color: white;
  opacity: 0.6;
  margin: 0 5px;
}

.btn-text {
  display: inline-block;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .btn-cart {
    gap: 5px;
  }

  .cart-icon {
   width: 28px;
        height: 28px;
  }

  .cart-count {
        width: 28px;
        height: 28px;
        font-size: 14px;
        top: -12px;
        right: -14px;
  }

  .btn-text {
    font-size: 0.8rem;
    padding: 0 7px;
    padding-left: 5px;
    padding-right: 0;
  }


}

@media (max-width: 768px) {
  .cta-content {
    gap: 0px;
  }



  .features-section {
    padding: 25px 15px;
  }
  .container {
    padding: 0;
  }
  .cta-section {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 10px;
    background: #f1f3ee;
    color: #5a6b2f;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: row;
  }

  .cta-section .cta-flower {
    width: 32%;
  }

  .cta-section h2 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    line-height: 1.3;
    flex: 0 0 65%;
    max-width: 65%;
    text-align: left;
  }

  .cta-section .btn-cta {
    background: linear-gradient(135deg, #ff6b8a 0%, #ff8e53 100%);
    color: white;
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-content {
    padding-left: 20px;
  }

  .hero-features {
    gap: 30px;
  }

  .comparison-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .purchase-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .current-price {
    font-size: 1.4rem;
  }

  .original-price {
    font-size: 1.0rem;
  }
  .purchase-info .product-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .purchase-image {
    order: 1;
  }

  .purchase-info {
    order: 2;
  }
}

@media (max-width: 768px) {
  .details-section {
    padding: 25px 15px;
    min-height: initial;
  }

  .detail-card h3{
    font-size: 0.5rem;
  }
  .details-grid{
    gap: 10px;
  }

  .comparison-section {
    padding: 25px 15px;
    padding-bottom: 0px;
  }

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

  .details-title {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }

  .details-section h2 {
   font-size: 1rem;
        letter-spacing: 2px;
  }



  .hero {
    padding: 25px 12px;
    text-align: left;
    justify-content: flex-start;
    background-size: 100% auto;
    background-position: right center;
    min-height: auto;
  }

  .hero-content {
    padding-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding-right: 45%;
    align-items: flex-start;
  }

  .hero-image {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
  }

  .hero-main-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-main-img::before {
    content: "";
    display: block;
    padding-top: 133.33%;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 0.95;
    margin-bottom: 0px;
  }

  .hero-content .hero-tagline {
    font-size: 0.45rem;
    padding: 3px 5px;
    margin-bottom: 5px;
  }

  .hero-description {
    font-size: 0.45rem;
    margin-bottom: 15px;
    max-width: 100%;
    line-height: 1.5;
  }

  .hero-features {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .feature-item {
    max-width: 70px;
    font-size: 0.4rem;
    gap: 0;
  }

  .feature-icon {
    width: 25px;
    height: 25px;
  }

  .features-left {
    text-align: center;
    padding: 20px 10px;
    max-width: 100%;
  }

  .features-section {
    padding: 20px 15px;
  }

  .purchase-section {
    padding: 25px 15px;
  }

  .price-section {
    margin-bottom: 18px;
  }

  .video-section {
    padding: 25px 15px;
  }

  .size-section {
    padding: 25px 15px;
  }

  .hero-features {
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
  }


  .feature-item {
    max-width: 100px;
  }

  .comparison-text h2,
  .size-section h2,
  .video-section h2,
  .cta-section h2 {
    font-size: 1.2rem;
    max-width: 100%;
    line-height: 1.2;
  }
  .cta-section h2 {
    font-size: 1rem;
  }
  .cta-section p {
    font-size: 0.5rem;
    margin-bottom: 0px;
    text-align: left;
  }

  .section-badge,
  .size-badge,
  .size-tag {
    font-size: 0.9rem;
  }
  .section-intro,
  .detail-card p,
  .comparison-text p {
    font-size: 0.8rem;
  }
  .features-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-left {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .features-left-title {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
  }

  .features-left-title h2 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 5px;
    /* font-weight: bold; */
  }

  .features-left-title img {
            width: 20px;
        height: 20px;
        margin-bottom: -4px;
  }

  .features-intro {
    font-size: 0.6rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-left: none;
    padding-left: 0;
  }

  .feature-card {
    border-right: 1px solid #d4d4d4;
    border-bottom: none;
    padding: 15px 10px;
  }

  .feature-card .feature-title {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 0.6rem;
    line-height: 1.5;
  }

  .feature-icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .feature-card:last-child {
    border-bottom: none;
  }

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



  .sale-badge {
    position: static;
    margin-top: 15px;
    margin-left: 0;
    transform: none;
  }

  .stock-alert {
    flex-wrap: nowrap;
    padding: 0;
    gap: 0px;
  }

  .alert-icon {
    font-size: 1.2rem;
  }

  .countdown {
    margin-left: auto;
    margin-top: 0;
    width: 35%;
    text-align: center;
    padding: 4px 10px;
    gap: 5px;
  }

  .fire-title {
    font-size: 0.9rem;
    color: #222;
  }
  .countdown-number {
    font-size: 0.8rem;
    padding: 0px 0px;
    min-width: 25px;
  }

  .countdown-label {
    font-size: 0.6rem;
  }

  .countdown-separator {
    font-size: 1rem;
    padding-top: 3px;
  }

  .option-buttons {
    flex-wrap: nowrap;
  }

  .sku-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sku-buttons .color-btn {
    flex: 0 0 auto;
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .option-btn {
    flex: 1;
    min-width: auto;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 10px;
    background-size: 100% auto;
  }

  .hero-content {
    padding-right: 42%;
    gap: 0;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 0.95;
    margin-bottom: 3px;
  }

  .hero-content .hero-tagline {
    font-size: 0.5rem;
    padding: 5px 10px;
    margin-bottom: 7px;
  }

  .hero-description {
    font-size: 0.5rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .hero-features {
    gap: 10px;
  }

  .feature-item {
    max-width: 60px;
    font-size: 0.45rem;
  }

  .hero-image {
    width: 38%;
  }

  .feature-item {
    max-width: 75px;
    font-size: 0.45rem;
  }

  .feature-icon {
    width: 25px;
    height: 25px;
  }

  .hero-image {
    width: 30%;
  }

  .option-buttons {
    flex-wrap: nowrap;
  }

  .sku-buttons {
    flex-wrap: wrap;
    gap: 6px;
  }

  .sku-buttons .color-btn {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .option-btn {
    flex: 1;
    min-width: auto;
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .color-btn,
  .size-btn {
    flex: 1;
    min-width: auto;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .quantity-control-wrap {
    gap: 10px;
  }

  .quantity-control {
    flex-wrap: nowrap;
    height: 44px;
    flex-shrink: 0;
  }

  .qty-btn {
    width: 40px;
  }

  .qty-value {
    width: 50px;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .btn-add-to-cart {
    flex: 1;
    min-width: 0;
    padding: 10px 15px;
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta {
    width: 100%;
    max-width: 300px;
  }
}
