/* store.css – Clean & Modern for Sweet Roll Store */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fdfcfe;
  color: #222;
  font-weight: 400;
}

/* =======================
   Header & Navigation
========================== */

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #a78bfa, #f472b6);
  padding: 0.8rem 1.5rem;
  color: #fff;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 60px;
}

.main-header .logo a {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
}

/* =======================
   Content Layout
========================== */

.content {
  padding: 0 2rem 2rem 2rem;
  min-height: calc(100vh - 200px);
}

/* =======================
   Hero Section (Shop Page)
========================== */

.hero-announcement {
  text-align: center;
  color: #c8102e;
  font-family: 'Poppins', sans-serif;
  padding: 2rem 1rem;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  background: linear-gradient(135deg, #fdf2f8, #fef3ff);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.hero-announcement .price-big {
  font-size: 2rem;
  font-weight: 700;
  color: #a855f7;
}

.hero-announcement .small {
  font-size: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.hero-announcement .note {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ec4899;
}

/* =======================
   Product Grid
========================== */

.product-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h2 {
  margin: 1rem 0 0.5rem 0;
  font-size: 1.3rem;
  color: #374151;
  font-weight: 600;
}

.product-card p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* =======================
   Badges & Labels
========================== */

.badge.sale {
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 6px;
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.out-of-stock {
  color: #dc2626;
  font-weight: bold;
  margin-top: 0.5rem;
}

.price-original {
  text-decoration: line-through;
  color: #9ca3af;
  margin-right: 0.5rem;
}

/* =======================
   Buttons & Forms
========================== */

button {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

form input[type="number"] {
  width: 70px;
  padding: 0.5rem;
  margin: 0.5rem 0.5rem 1rem 0;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  font-size: 1rem;
}

/* =======================
   Product Page Layout
========================== */

.product-page {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.nav-links a {
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: #fdf4ff;
}

.product-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.product-images {
  flex: 1 1 45%;
}

.product-images img.main-image {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: zoom-in;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.thumbnail-row .thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.thumbnail-row .thumb:hover {
  border-color: #a855f7;
}

.product-info {
  flex: 1 1 45%;
}

.product-info h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #374151;
  font-weight: 700;
}

.product-info .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a855f7;
  margin: 1rem 0;
}

.product-info .paypal-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background: #f9fafb;
  border-radius: 6px;
  border-left: 4px solid #a855f7;
}

.product-info form {
  margin-bottom: 2rem;
}

.product-info button {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-info button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.social-icons {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.social-icons a {
  margin-right: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.product-description {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e5e7eb;
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}

/* =======================
   Footer
========================== */

.main-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #fdf2f8, #fef3ff);
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 4rem;
  border-top: 1px solid #e5e7eb;
}

.footer {
  text-align: center;
  color: #a855f7;
}

.footer a {
  color: #a855f7;
  font-weight: bold;
  margin: 0 8px;
  text-decoration: none;
}

.footer a:hover {
  color: #ec4899;
}

/* =======================
   Hero Section - Main Landing
========================== */

.hero-section {
  background: #e1dce2;
  padding: 0;
  margin-bottom: 3rem;
  overflow: hidden;
}

.hero-tagline {
  text-align: center;
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  background: rgba(168, 85, 247, 0.1);
}

.hero-tagline h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #ec4899;
  line-height: 1.2;
}

.hero-background {
  display: flex;
  align-items: center;
  min-height: 550px;
  max-height: 75vh;
  position: relative;
  background: #e1dce2;
}

.hero-model-left,
.hero-model-right {
  flex: 0 0 35%;
  height: 550px;
  max-height: 75vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-model-left img,
.hero-model-right img {
  width: 100%;
  height: 105%;
  object-fit: cover;
  object-position: center 10%;
  margin-top: -2px;
}

.hero-model-left img {
  transform: scaleX(1);
}

.hero-model-right img {
  transform: scaleX(-1);
}

.hero-center {
  flex: 1;
  text-align: center;
  padding: 2rem;
  color: #374151;
  position: relative;
  z-index: 2;
}

.sweet-roll-text {
  font-family: 'Dancing Script', 'Brush Script MT', cursive;
  font-size: 3.5rem;
  font-weight: 700;
  color: #a855f7;
  margin: 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(168, 85, 247, 0.3);
  transform: rotate(-3deg);
  display: inline-block;
}

.pricing-info {
  margin: 1.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.price-highlight {
  color: #ec4899;
  font-size: 1.8rem;
  font-weight: 800;
}

.shipping-text {
  font-size: 1.1rem;
  color: #6b7280;
}

.offer-text {
  margin-top: 1rem;
  color: #374151;
  font-size: 1.2rem;
}

.order-button {
  display: inline-block;
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  text-transform: uppercase;
}

.order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.video-embed {
  margin-top: 2rem;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.video-embed iframe {
  border-radius: 12px;
  max-width: 100%;
  display: block;
}

/* =======================
   Features Section
========================== */

.features-section {
  padding: 3rem 2rem;
  background: white;
  margin-bottom: 3rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-video {
  flex: 1;
  min-width: 300px;
}

.feature-video iframe {
  width: 100%;
  height: 241px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-description {
  font-size: 1.4rem;
  color: #ec4899;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.feature-cta {
  font-size: 1.2rem;
  color: #a855f7;
  font-weight: 500;
}

/* =======================
   Transformation Gallery
========================== */

.transformation-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fdf2f8, #fef3ff);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.transformation-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.transformation-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.transformation-item h3 {
  font-size: 1.4rem;
  color: #a855f7;
  font-weight: 600;
  margin: 0;
}
.transformation-gallery .transformation-item img {
  height: 450px;
  object-fit: cover;
}

/* =======================
   Testimonial Section
========================== */

.testimonial-section {
  background: linear-gradient(45deg, #a855f7, #ec4899);
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.testimonial-image {
  flex: 0 0 300px;
}

.testimonial-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.testimonial-quote {
  flex: 1;
  color: white;
}

.testimonial-quote blockquote {
  font-size: 1.8rem;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.testimonial-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
}

/* =======================
   Learn More Section
========================== */

.learn-more-section {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  margin-bottom: 3rem;
}

.learn-more-section h2 {
  color: #a855f7;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.learn-more-button {
  display: inline-block;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.learn-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* =======================
   Awards Section
========================== */

.awards-section {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}

.award-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.award-text {
  flex: 1;
  color: white;
  text-align: center;
}

.award-text p {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.final-cta {
  display: inline-block;
  background: linear-gradient(45deg, #ef4444, #dc2626);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  text-transform: uppercase;
}

.final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
}

.award-image {
  flex: 0 0 250px;
  text-align: center;
}

.award-image img {
  max-width: 100%;
  height: auto;
}

/* =======================
   Guarantee Section
========================== */

.guarantee-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fdf2f8, #fef3ff);
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.guarantee-badge {
  flex: 0 0 200px;
  text-align: center;
}

.guarantee-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.guarantee-days {
  font-size: 3rem;
  font-weight: 800;
}

.guarantee-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.guarantee-details {
  flex: 1;
  min-width: 300px;
}

.guarantee-details p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* =======================
   About Us / Contact Page
========================== */

.about-section {
  background: white;
  margin-bottom: 3rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.inventor-story {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, #fdf2f8, #fef3ff);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.inventor-image {
  flex: 0 0 250px;
  text-align: center;
}

.inventor-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #a855f7;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
  margin-bottom: 1rem;
}

.inventor-image h3 {
  color: #a855f7;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.inventor-details {
  flex: 1;
  min-width: 300px;
}

.inventor-details h2 {
  color: #ec4899;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.inventor-details p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 4rem 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  color: #a855f7;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.address-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border-left: 4px solid #a855f7;
}

.address-card h3 {
  color: #ec4899;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.address-details p {
  margin: 0.3rem 0;
  color: #4b5563;
  font-size: 1rem;
}

.address-details p:first-child {
  font-weight: 700;
  color: #374151;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-item h4 {
  color: #a855f7;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.contact-item p {
  color: #6b7280;
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
  position: sticky;
  top: 2rem;
}

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  border-top: 4px solid #a855f7;
}

.contact-form-card h3 {
  color: #374151;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.modern-contact-form .form-group {
  margin-bottom: 1.5rem;
}

.modern-contact-form label {
  display: block;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.modern-contact-form input,
.modern-contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.modern-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.send-button {
  width: 100%;
  background: linear-gradient(45deg, #a855f7, #ec4899);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.send-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.button-icon {
  font-size: 1.2rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .inventor-story {
    flex-direction: column;
    text-align: center;
  }
  
  .inventor-image {
    flex: none;
  }
  
  .contact-form-wrapper {
    position: static;
  }
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.sweetroll-intro {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.sweetroll-intro h2 {
  color: #a855f7;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.sweetroll-intro h3 {
  color: #ec4899;
  font-size: 1.6rem;
  margin: 2rem 0 1.5rem 0;
}

.sweetroll-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
  border-color: #a855f7;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1rem;
}

.video-info h4 {
  color: #a855f7;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.video-caption {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-background {
    flex-direction: column;
    min-height: auto;
  }
  
  .hero-model-left,
  .hero-model-right {
    display: none;
  }
  
  .hero-center {
    flex: none;
    width: 100%;
  }
  
  .hero-center h1 {
    font-size: 2rem;
  }
  
  .feature-highlight,
  .testimonial-content,
  .award-content,
  .guarantee-section {
    flex-direction: column;
    text-align: center;
  }
  
  .transformation-gallery {
    flex-direction: column;
    align-items: center;
  }
}

/* =======================
   Responsive Design
========================== */

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-nav {
    justify-content: center;
  }
  
  .product-layout {
    flex-direction: column;
  }
  
  .video-highlight {
    flex-direction: column;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
}