* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f8f8;
    color: #1a1a1a;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
    padding: 35px 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a2d 50%, #1a1a1a 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }

  header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #dc2626 100%);
  }

  header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626 0%, #3b82f6 50%, #10b981 100%);
  }
  
  header h1 {
    color: #ffffff;
    font-size: 2.2rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
    animation: fadeIn 0.6s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

header h1 span.highlight {
    color: #10b981;
}

header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin: 15px 0 0 0;
    font-weight: 400;
    animation: fadeIn 0.6s ease-out 0.2s both;
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
  
  .step {
    background: #ffffff;
    color: #000000;
    padding: 40px;
    margin-bottom: 20px;
    animation: fadeIn 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

.product-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 0 40px 0;
    padding: 0;
    background: transparent;
}

.product-section {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideInLeft 0.6s ease-out;
}

.info-section {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideInRight 0.6s ease-out 0.2s both;
}

/* Welcome Section Styles */
.welcome-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.welcome-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.welcome-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: fadeIn 0.5s ease-out;
}

.welcome-greeting {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
    font-weight: 400;
}

.welcome-greeting strong {
    color: #10b981;
    font-weight: 600;
}

.welcome-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.welcome-image-container .product-image {
    max-width: 300px;
    width: 100%;
}

.welcome-image-container .product-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.welcome-content {
    margin: 25px 0;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(146, 64, 14, 0.15);
    animation: float 3s ease-in-out infinite;
}

.discount-tag {
    background: #dc2626;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0 0 15px 0;
    text-align: center;
}

.welcome-text strong {
    color: #dc2626;
    font-weight: 700;
}

.welcome-cta {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #10b981;
    margin: 0;
    font-weight: 600;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.welcome-btn {
    width: 100%;
    max-width: 350px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.welcome-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.welcome-btn:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 30px 20px;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .welcome-greeting {
        font-size: 1.1rem;
    }
    
    .welcome-image-container {
        padding: 15px;
    }
    
    .welcome-image-container .product-image {
        max-width: 250px;
    }
    
    .promo-badge {
        flex-direction: column;
        gap: 8px;
        padding: 12px 20px;
    }
    
    .welcome-btn {
        max-width: 100%;
    }
}

/* Product Info Step Styles */
.product-info-step {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 40px;
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.offer-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    border: none;
    padding: 0;
}

.offer-intro {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.product-display {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

/* Product Hero Section - Desktop First */
.product-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.product-hero-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.product-hero-image img:hover {
    transform: scale(1.03);
}

.product-hero-info {
    flex: 1;
    text-align: left;
}

.product-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.product-hero-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.hero-old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.hero-new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
}

.hero-savings {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.product-image-wrapper {
    flex: 0 0 auto;
}

.product-image-wrapper .product-image {
    max-width: 350px;
    width: 100%;
}

.product-image-wrapper .product-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.product-details {
    flex: 1;
    text-align: left;
}

.product-name {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.old-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2rem;
    color: #dc2626;
    font-weight: 800;
}

.savings-text {
    font-size: 1rem;
    color: #10b981;
    font-weight: 700;
    margin: 0;
    display: inline-block;
    background: #ecfdf5;
    padding: 5px 15px;
    border-radius: 20px;
}

.benefits-container {
    margin-bottom: 30px;
}

.benefits-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-weight: 700;
    text-align: center;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
    animation: slideInLeft 0.4s ease-out both;
}

.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.benefit-card:nth-child(3) { animation-delay: 0.15s; }
.benefit-card:nth-child(4) { animation-delay: 0.2s; }
.benefit-card:nth-child(5) { animation-delay: 0.25s; }
.benefit-card:nth-child(6) { animation-delay: 0.3s; }

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.benefit-card.highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.benefit-tick {
    width: 28px;
    height: 28px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-card.highlight .benefit-tick {
    background: #f59e0b;
}

.benefit-card p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* After Benefits Image */
.after-benefits-image {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.after-benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.after-benefits-image:hover img {
    transform: scale(1.02);
}

/* Quote Disclaimer */
.quote-disclaimer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 20px 35px;
    margin: 30px auto;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #10b981;
    border-right: 4px solid #dc2626;
    overflow: hidden;
    max-width: 500px;
    width: fit-content;
}

.quote-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #dc2626 100%);
}

.quote-disclaimer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626 0%, #3b82f6 50%, #10b981 100%);
}

.quote-disclaimer p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.2px;
}

.quote-icon {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    line-height: 0;
    position: absolute;
    opacity: 0.25;
}

.quote-icon:first-child {
    top: 15px;
    left: 10px;
}

.quote-icon.closing {
    bottom: -10px;
    right: 10px;
    color: #dc2626;
}

.buy-now-btn {
    width: 100%;
    max-width: 450px;
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(220, 38, 38, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.buy-now-btn .btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.buy-now-btn:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .product-info-step {
        padding: 25px 18px;
        margin: 0 -5px;
    }
    
    .offer-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .offer-header h3 {
        font-size: 1.4rem;
    }
    
    .offer-intro {
        font-size: 0.95rem;
    }
    
    /* Product Hero Mobile */
    .product-hero {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
        text-align: center;
    }
    
    .product-hero-image {
        max-width: 100%;
        order: 1;
    }
    
    .product-hero-image img {
        max-width: 280px;
        width: 100%;
    }
    
    .product-hero-info {
        order: 2;
        text-align: center;
    }
    
    .product-hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .product-hero-pricing {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .hero-old-price {
        font-size: 1.1rem;
    }
    
    .hero-new-price {
        font-size: 2rem;
    }
    
    .hero-savings {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Benefits Mobile */
    .product-info-step .product-benefits-section {
        padding: 25px 18px;
        margin-bottom: 25px;
    }
    
    .benefits-section-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        padding: 12px 0;
    }
    
    .benefit-item p {
        font-size: 0.92rem;
        line-height: 1.5;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 0.85rem;
    }
    
    .product-display {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .product-image-wrapper .product-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-details {
        text-align: center;
    }
    
    .price-display {
        justify-content: center;
    }
    
    .product-name {
        font-size: 1.6rem;
    }
    
    .new-price {
        font-size: 1.7rem;
    }
    
    .benefit-card {
        padding: 15px;
    }
    
    .buy-now-btn {
        max-width: 100%;
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .after-benefits-image {
        margin: 25px 0;
        border-radius: 12px;
    }
    
    .quote-disclaimer {
        padding: 18px 25px;
        margin: 25px auto;
        max-width: 90%;
    }
    
    .quote-disclaimer p {
        font-size: 0.95rem;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .contact-disclaimer {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .contact-disclaimer-icon {
        font-size: 2.5rem;
    }
    
    .contact-disclaimer h4 {
        font-size: 1.3rem;
    }
    
    .contact-disclaimer p {
        font-size: 1rem;
    }
    
    .contact-disclaimer p.highlight {
        padding: 12px 15px;
    }
    
    /* Inline Order Section Mobile */
    .inline-order-section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .inline-checkout-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .inline-checkout-header h2 {
        font-size: 1.3rem;
    }
    
    .inline-checkout-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .inline-product-image {
        min-width: 100%;
        max-width: 100%;
    }
    
    .inline-product-image img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
    
    .inline-order-form {
        min-width: 100%;
        padding: 30px 20px;
    }
    
    .inline-form-header h3 {
        font-size: 1.5rem;
    }
    
    .inline-new-price {
        font-size: 1.4rem;
    }
}

.product-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    box-shadow: none;
    animation: scaleIn 0.5s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 180%;
    max-height: 400px;
    display: block;
    object-fit: contain;
    background: transparent;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-description {
    color: #333;
    margin: 15px 0;
    line-height: 1.8;
}

.pricing {
    margin: 25px 0 0 0;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.original-price {
    color: #666;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-right: 15px;
}

.current-price {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 700;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}
  
button {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    margin: 8px 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    animation: scaleIn 0.4s ease-out;
}

button:hover {
    background: #b91c1c;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

button:active {
    transform: translateY(0) scale(0.98);
}
  
  input {
    width: 100%;
    padding: 14px 16px;
    margin: 10px 0;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    background: #ffffff;
    color: #000000;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  }
  
  footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid #e8e8e8;
    color: #333333;
    font-size: 0.9rem;
  }
  
  .disclaimer {
    margin-top: 15px;
    line-height: 1.6;
    color: #666666;
    font-size: 0.85rem;
}

.step h3 {
    color: #000000;
    margin-top: 0;
    font-size: 1.5rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.step p {
    color: #333;
    margin: 15px 0;
}

.step strong {
    color: #000000;
}

.checkout-container {
    margin-bottom: 20px;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
    animation: fadeIn 0.5s ease-out;
}

.checkout-header h2 {
    animation: slideInLeft 0.5s ease-out;
}

.checkout-badge {
    animation: slideInRight 0.5s ease-out;
}

.checkout-header h2 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 700;
}

.checkout-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f9ff;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.secure-icon {
    font-size: 1.1rem;
}

.checkout-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.5s ease-out;
    border: 3px solid #10b981;
    border-top: 6px solid #3b82f6;
    border-bottom: 6px solid #10b981;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.checkout-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 50%, #3b82f6 100%);
}

.checkout-form-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #10b981 100%);
}

.form-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 3px solid #10b981;
    background: linear-gradient(90deg, transparent 0%, #ecfdf5 50%, transparent 100%);
    padding: 10px 0 12px 0;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.form-header h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.form-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.order-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.order-product-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e8e8e8;
}

.order-product-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.order-product-image::before {
    content: "ALPHA BEAST";
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.order-product-image::after {
    content: "📦";
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
}

.order-product-details {
    flex: 1;
}

.order-product-title {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.order-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.order-original-price {
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
}

.order-current-price {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 700;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    animation: slideInRight 0.4s ease-out both;
    text-align: left;
}

.benefit-item p {
    margin: 0;
    flex: 1;
    text-align: left;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: #b91c1c;
}

.benefit-item p {
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.benefit-item strong {
    color: #1a1a1a;
}

.product-benefits-section .benefit-item p {
    color: #ffffff;
}

.product-benefits-section .benefit-item strong {
    color: #ffffff;
}

.scroll-to-form-btn {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.scroll-to-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #2563eb 100%);
}

.scroll-to-form-btn:active {
    transform: translateY(-1px);
}

.scroll-to-form-btn span:first-child {
    font-size: 1.3rem;
}

.order-form-section {
    background: #ffffff;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-form-section h3 {
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #6ee7b7;
    border-left: 5px solid #10b981;
    animation: slideInLeft 0.4s ease-out both;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.form-group:hover {
    border-left-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateX(2px);
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

.form-group label {
    display: block;
    color: #065f46;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.required {
    color: #3b82f6;
    font-weight: 800;
}

.form-hint {
    display: block;
    color: #999;
    font-size: 0.8rem;
    margin-top: 3px;
    font-style: italic;
}

.checkout-form-section input {
    width: 100%;
    padding: 10px 14px;
    margin: 0;
    border: 2px solid #10b981;
    font-size: 1rem;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
}

.checkout-form-section input:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15);
}

.checkout-form-section input:focus {
    outline: none;
    border-color: #3b82f6;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(16, 185, 129, 0.2);
    animation: pulse 1s ease-in-out;
    background: #f0fdf4;
}

.order-form-section input {
    width: 100%;
    padding: 14px 16px;
    margin: 0;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    background: #ffffff;
    color: #000000;
    transition: all 0.3s ease;
}

.order-form-section input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.trust-badges {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 3px solid #3b82f6;
    border-radius: 10px;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.checkout-product-image-wrapper {
    text-align: center;
    margin: 12px 0;
}

.checkout-product-image {
    width: auto;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    box-shadow: none;
    border: none;
    animation: scaleIn 0.5s ease-out 0.4s both;
    transition: transform 0.3s ease;
}

.checkout-product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
    display: block;
    object-fit: contain;
    background: transparent;
}

.checkout-product-image:hover {
    transform: scale(1.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    animation: scaleIn 0.4s ease-out both;
    transition: transform 0.3s ease;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.checkout-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    margin: 12px 0 8px 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.4s ease-out 0.5s both;
    border-radius: 10px;
}

.checkout-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.checkout-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.checkout-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #2563eb 100%);
}

.checkout-submit-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-price {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 1rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin: 10px 0 0 0;
    line-height: 1.5;
  }

.order-summary-card {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

.summary-title {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin: 0 0 25px 0;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.summary-product {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.summary-product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.summary-product-image::before {
    content: "ALPHA BEAST";
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
}

.summary-product-image::after {
    content: "📦";
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
}

.summary-product-info h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.product-quantity {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.summary-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 20px 0;
}

.summary-pricing {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price-row.discount {
    color: #10b981;
}

.price-row.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #e8e8e8;
}

.price-label {
    color: #666;
    font-size: 0.95rem;
}

.price-row.total .price-label {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-value {
    font-weight: 600;
    color: #333;
}

.price-value.original {
    text-decoration: line-through;
    color: #999;
}

.price-value.discount-amount {
    color: #10b981;
    font-weight: 700;
}

.price-value.total-amount {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
}

.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.savings-icon {
    font-size: 1.2rem;
}

.summary-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.summary-benefits h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 5px;
    line-height: 1.6;
}

.product-benefits-section {
    background: #1a1a1a;
    padding: 35px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.6s ease-out 0.3s both;
    border-radius: 16px;
}

.product-info-step .product-benefits-section {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 30px;
}

.product-info-step .why-choose-section {
    margin-top: 30px;
}

/* Contact Disclaimer */
.contact-disclaimer {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 3px solid #10b981;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.contact-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 50%, #10b981 100%);
    border-radius: 16px 16px 0 0;
}

.contact-disclaimer-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.contact-disclaimer h4 {
    font-size: 1.5rem;
    color: #065f46;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.contact-disclaimer p {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.contact-disclaimer p.highlight {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    margin-top: 15px;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-disclaimer p.highlight strong {
    color: #dc2626;
}

/* Inline Order Section */
.inline-order-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.inline-checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.inline-checkout-header h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.inline-checkout-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.inline-product-image {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.inline-product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.inline-order-form {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, #4a1942 0%, #2d1a2d 100%);
    padding: 35px 30px;
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.inline-form-header {
    margin-bottom: 25px;
    text-align: center;
}

.inline-form-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 20px 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.urgency-text {
    color: #ffa500;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inline-pricing {
    margin-bottom: 15px;
}

.inline-old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-right: 15px;
}

.inline-new-price {
    color: #ff6b35;
    font-size: 1.6rem;
    font-weight: 800;
}

.form-instruction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.inline-form-group {
    margin-bottom: 15px;
}

.inline-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 1rem;
    background: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.inline-form-group input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.inline-form-group input::placeholder {
    color: #888;
}

.inline-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #dc2626 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.inline-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8c5a 0%, #ef4444 100%);
}

.delivery-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 15px 0 0 0;
    font-weight: 500;
}

.checkout-form-section > form > p {
    text-align: center;
    color: #065f46;
    font-style: italic;
    font-size: 0.95rem;
    margin: 10px 0 0 0;
    padding: 12px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid #10b981;
    border-right: 4px solid #3b82f6;
    border-radius: 8px;
    animation: slideInRight 0.5s ease-out 0.6s both;
    font-weight: 500;
}

.benefits-section-title {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 25px 0;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #333333;
    text-align: left;
}

.order-submit-btn {
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    margin: 25px 0 0 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.order-submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.order-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    header h1 {
        font-size: 1.6rem;
    }

    header p {
        font-size: 1rem;
        padding: 6px 15px;
    }

    .step {
        padding: 20px;
    }

    .product-showcase {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .product-section {
        padding: 30px 20px;
    }

    .info-section {
        padding: 30px 20px;
    }

    .product-image {
        flex: 0 0 auto;
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 1.6rem;
    }

    button {
        width: 100%;
        margin: 8px 0;
    }

    input {
        font-size: 16px;
    }

    .order-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .checkout-content {
        gap: 25px;
    }

    .checkout-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .checkout-form-section {
        padding: 25px 20px;
    }

    .checkout-product-image img {
        max-height: 200px;
    }

    .order-summary-card {
        position: relative;
        top: 0;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .order-product-section {
        padding: 25px 20px;
    }

    .order-form-section {
        padding: 25px 20px;
    }

    .order-product-header {
        flex-direction: column;
        text-align: center;
    }

    .order-product-image {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 15px;
    }

    header h1 {
        font-size: 1.35rem;
    }
    
    header p {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .product-image img {
        max-height: 230px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .step {
        padding: 15px;
    }
    
    /* Product Info Step - Small Mobile */
    .product-info-step {
        padding: 20px 15px;
    }
    
    .offer-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .offer-header h3 {
        font-size: 1.25rem;
    }
    
    .product-hero {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .product-hero-image img {
        max-width: 240px;
    }
    
    .product-hero-title {
        font-size: 1.5rem;
    }
    
    .hero-new-price {
        font-size: 1.7rem;
    }
    
    .hero-old-price {
        font-size: 1rem;
    }
    
    .product-info-step .product-benefits-section {
        padding: 20px 15px;
    }
    
    .benefits-section-title {
        font-size: 1.1rem;
    }
    
    .order-benefits {
        gap: 15px;
    }
    
    .benefit-item p {
        font-size: 0.88rem;
    }
    
    .buy-now-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .buy-now-btn .btn-arrow {
        font-size: 1.1rem;
    }
    
    .after-benefits-image {
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .quote-disclaimer {
        padding: 15px 20px;
        margin: 20px auto;
        max-width: 95%;
    }
    
    .quote-disclaimer p {
        font-size: 0.9rem;
    }
    
    .quote-icon {
        font-size: 1.8rem;
    }
    
    .quote-icon:first-child {
        top: 10px;
        left: 8px;
    }
    
    .quote-icon.closing {
        bottom: -8px;
        right: 8px;
    }
    
    .contact-disclaimer {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .contact-disclaimer-icon {
        font-size: 2rem;
    }
    
    .contact-disclaimer h4 {
        font-size: 1.15rem;
    }
    
    .contact-disclaimer p {
        font-size: 0.95rem;
    }
    
    .contact-disclaimer p.highlight {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Inline Order Section Small Mobile */
    .inline-order-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .inline-checkout-header h2 {
        font-size: 1.15rem;
    }
    
   
    
    .inline-form-header h3 {
        font-size: 1.3rem;
    }
    
    .inline-form-group input {
        padding: 12px 14px;
        font-size: 16px;
    }
    
    .inline-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .inline-new-price {
        font-size: 1.3rem;
    }
    
    .urgency-text {
        font-size: 0.85rem;
    }
}