* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #1a1a1a;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
  }
  
  header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  header h1 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeIn 0.6s ease-out;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

header p {
    color: #333333;
    font-size: 1.1rem;
    margin: 10px 0 0 0;
    font-weight: 500;
    animation: fadeIn 0.6s ease-out 0.2s both;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}
  
  .step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    color: #1a1a1a;
    padding: 40px;
    margin-bottom: 20px;
    animation: fadeIn 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  @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: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(15px);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideInLeft 0.6s ease-out;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(15px);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.6s ease-out 0.2s both;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: scaleIn 0.5s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    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;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.product-description {
    color: #2d3748;
    margin: 15px 0;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.6);
}

.pricing {
    margin: 25px 0 0 0;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.original-price {
    color: #718096;
    font-size: 1.2rem;
    text-decoration: line-through;
    margin-right: 15px;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.6);
}

.current-price {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.price-label {
    color: #4a5568;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.6);
}

.landing-image-placeholder {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 2px dashed rgba(220, 38, 38, 0.3);
    padding: 60px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    animation: shimmerPlaceholder 3s infinite;
}

@keyframes shimmerPlaceholder {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.landing-image-placeholder:hover {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.placeholder-content {
    position: relative;
    z-index: 1;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.placeholder-text {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.placeholder-subtext {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.6);
}
  
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: #1a1a1a;
    margin-top: 0;
    font-size: 1.5rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.step p {
    color: #2d3748;
    margin: 15px 0;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.6);
}

.step strong {
    color: #1a1a1a;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.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: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.5s ease-out;
    border: 3px solid #ffde09;
    border-top: 6px solid #f63b3b;
    border-bottom: 6px solid #fffa01;
    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: 28px;
    padding-bottom: 18px;
    border-bottom: 3px solid #10b981;
    background: linear-gradient(90deg, transparent 0%, #ecfdf5 50%, transparent 100%);
    padding: 15px 0 18px 0;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
}

.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: "Longjack XXXL";
    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;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    animation: slideInRight 0.4s ease-out both;
}

.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;
    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;
}

.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: 22px;
    padding: 0;
    background: transparent;
    border: none;
    animation: slideInLeft 0.4s ease-out both;
    border-radius: 0;
    transition: none;
    box-shadow: none;
}

.form-group:hover {
    border: none;
    box-shadow: none;
    transform: none;
}

.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: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
}

.required {
    color: #3b82f6;
    font-weight: 800;
}

.form-hint {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
}

.checkout-form-section input {
    width: 100%;
    padding: 12px 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    background: transparent;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
    border-radius: 0;
    font-weight: 400;
    box-shadow: none;
}

.checkout-form-section input:hover {
    border-bottom-color: #999;
}

.checkout-form-section input:focus {
    outline: none;
    border-bottom: 2px solid #dc2626;
    box-shadow: none;
    animation: none;
    background: transparent;
}

.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: 25px 0;
    padding: 20px;
    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: 20px 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: 18px 30px;
    margin: 20px 0 12px 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: "Longjack XXXL";
    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;
}

.checkout-form-section > form > p {
    text-align: center;
    color: #065f46;
    font-style: italic;
    font-size: 0.95rem;
    margin: 15px 0 0 0;
    padding: 18px;
    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;
}

.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 h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .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;
    }

    .landing-image-placeholder {
        padding: 50px 25px;
        margin: 25px auto;
    }

    .placeholder-icon {
        font-size: 3.5rem;
    }

    .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 h1 {
        font-size: 1.6rem;
    }

    .product-image img {
        max-height: 200px;
    }

    .product-title {
        font-size: 1.3rem;
    }

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

    .step {
        padding: 15px;
    }

    .landing-image-placeholder {
        padding: 40px 20px;
        margin: 20px auto;
    }

    .placeholder-icon {
        font-size: 3rem;
    }

    .placeholder-text {
        font-size: 1rem;
    }

    .placeholder-subtext {
        font-size: 0.85rem;
    }
}