* {
    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;
    }
}
/* ===== GLOBAL ===== */

body{
    margin:0;
    padding:0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg,#0f0f0f,#1a1a1a);
    color:#ffffff;
}

.container{
    width:100%;
    max-width:700px;
    margin:auto;
    padding:20px;
}

/* ===== HEADER ===== */

header{
    text-align:center;
    padding:30px 20px;
    background:linear-gradient(135deg,#1a1a1a,#2b0000);
    border:2px solid #d4af37;
    border-radius:18px;
    margin-bottom:25px;
    box-shadow:0 0 25px rgba(212,175,55,0.3);
}

#header-title{
    font-size:38px;
    line-height:1.2;
    color:#FFD700;
    font-weight:900;
    margin-bottom:10px;
    text-shadow:0 0 10px rgba(255,215,0,0.4);
}

#header-subtitle{
    font-size:20px;
    color:#ffffff;
    font-weight:600;
    margin:0;
}

/* ===== STEP CONTAINER ===== */

#step-container{
    background:#161616;
    border:1px solid rgba(255,215,0,0.25);
    border-radius:18px;
    padding:25px;
    box-shadow:0 0 20px rgba(0,0,0,0.4);
}

/* ===== QUESTIONS ===== */

.question-title{
    color:#FFD700;
    font-size:26px;
    font-weight:800;
    text-align:center;
    margin-bottom:20px;
}

.question-text{
    color:#ffffff;
    font-size:18px;
    line-height:1.6;
}

/* ===== ANSWER BUTTONS ===== */

.answer-btn{
    width:100%;
    padding:16px;
    margin-bottom:12px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#b30000,#ff0000);
    color:#ffffff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.answer-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 20px rgba(255,0,0,0.4);
}

/* ===== CTA BUTTON ===== */

.cta-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#FFD700,#d4af37);
    color:#111;
    font-size:22px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 0 20px rgba(255,215,0,0.4);
}

/* ===== FOOTER ===== */

footer{
    text-align:center;
    margin-top:25px;
    padding:20px;
    color:#cccccc;
    font-size:14px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    #header-title{
        font-size:30px;
    }

    #header-subtitle{
        font-size:18px;
    }

    .question-title{
        font-size:22px;
    }

    .answer-btn{
        font-size:16px;
    }

    .cta-btn{
        font-size:20px;
    }
}
.answer-btn,
.next-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#FFD700,#d4af37);
    color:#111;
    font-size:20px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    box-shadow:0 0 25px rgba(255,215,0,.4);
    transition:.3s;
}

.answer-btn:hover,
.next-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 35px rgba(255,215,0,.6);
}
/* ==========================================
   PREMIUM LONGJACK XXXL THEME OVERRIDE
   ========================================== */

/* BODY */

body{
    background:#0f0f0f !important;
    color:#ffffff !important;
    font-family:Arial,Helvetica,sans-serif;
}

/* MAIN CONTAINER */

.container{
    max-width:900px !important;
    margin:auto !important;
    padding:20px !important;
}

/* HEADER */

header{
    background:linear-gradient(135deg,#111111,#1a1a1a,#2b0000) !important;
    border:2px solid rgba(255,215,0,.25) !important;
    border-radius:20px !important;
    box-shadow:0 10px 35px rgba(0,0,0,.5) !important;
}

#header-title{
    color:#FFD700 !important;
    font-weight:900 !important;
    text-shadow:0 0 20px rgba(255,215,0,.35) !important;
}

#header-subtitle{
    color:#ffffff !important;
}

/* STEP CARDS */

.step,
.product-section,
.checkout-container{
    background:#171717 !important;
    border:1px solid rgba(255,215,0,.15) !important;
    border-radius:20px !important;
    padding:25px !important;
    box-shadow:0 10px 30px rgba(0,0,0,.4) !important;
}

/* TEXT */

.step p,
.product-section p,
.checkout-container p{
    color:#f5f5f5 !important;
    line-height:1.8 !important;
}

.step strong{
    color:#FFD700 !important;
    font-size:1.15rem !important;
}

/* ALL QUIZ BUTTONS */

.step button,
.welcome-button{
    background:linear-gradient(135deg,#FFD700,#D4AF37) !important;
    color:#111 !important;
    border:none !important;
    border-radius:14px !important;
    font-weight:900 !important;
    text-transform:uppercase !important;
    letter-spacing:1px !important;
    box-shadow:0 5px 20px rgba(255,215,0,.35) !important;
    transition:.3s !important;
}

.step button:hover,
.welcome-button:hover{
    transform:translateY(-3px) !important;
    box-shadow:0 10px 30px rgba(255,215,0,.55) !important;
}

/* PRODUCT TITLE */

h2{
    color:#FFD700 !important;
    text-shadow:0 0 15px rgba(255,215,0,.25) !important;
}

/* BENEFITS SECTION */

.product-benefits-section{
    background:#121212 !important;
    border-radius:18px !important;
    border:1px solid rgba(255,215,0,.15) !important;
    padding:25px !important;
}

.benefits-section-title{
    color:#FFD700 !important;
    text-align:center !important;
    font-weight:900 !important;
}

.benefit-item{
    background:#1c1c1c !important;
    border:1px solid rgba(255,215,0,.12) !important;
    border-radius:12px !important;
    padding:12px !important;
    margin-bottom:12px !important;
}

.benefit-icon{
    background:#FFD700 !important;
    color:#111 !important;
    font-weight:bold !important;
}

/* INFO BOX */

div[style*="background: #f8f9fa"]{
    background:#171717 !important;
    border-left:4px solid #FFD700 !important;
}

div[style*="background: #f8f9fa"] h3{
    color:#FFD700 !important;
}

div[style*="background: #f8f9fa"] p{
    color:#ffffff !important;
}

/* ORDER FORM */

.checkout-form-section{
    background:linear-gradient(135deg,#1b1b1b,#262626) !important;
    border:1px solid rgba(255,215,0,.2) !important;
}

.form-header p{
    color:#ffffff !important;
}

/* PRICE */

span[style*="line-through"]{
    color:#888 !important;
}

span[style*="1.5rem"]{
    color:#FFD700 !important;
    font-weight:900 !important;
}

/* INPUTS */

input,
select,
textarea{
    background:#ffffff !important;
    color:#111111 !important;
    border:2px solid rgba(255,215,0,.2) !important;
    border-radius:10px !important;
}

input::placeholder{
    color:#666 !important;
}

/* SUBMIT BUTTON */

.checkout-submit-btn{
    background:linear-gradient(135deg,#c1121f,#dc2626,#ef4444) !important;
    color:#ffffff !important;
    font-weight:900 !important;
    border-radius:14px !important;
    box-shadow:0 8px 25px rgba(220,38,38,.45) !important;
    transition:.3s !important;
}

.checkout-submit-btn:hover{
    transform:translateY(-3px) !important;
    box-shadow:0 12px 35px rgba(220,38,38,.6) !important;
}

/* IMAGES */

img{
    border-radius:16px !important;
    overflow:hidden !important;
}

/* FOOTER */

footer{
    color:#cfcfcf !important;
    text-align:center !important;
    margin-top:30px !important;
}

/* MOBILE */

@media(max-width:768px){

    .step,
    .product-section,
    .checkout-container{
        padding:18px !important;
    }

    #header-title{
        font-size:30px !important;
    }

    .step button,
    .welcome-button{
        font-size:16px !important;
    }

    .checkout-submit-btn{
        font-size:18px !important;
    }
}
/* Based On Your Answers */

.step h3,
.product-section h3{
    color:#FFD700 !important;
    text-shadow:none !important;
    font-weight:900 !important;
    font-size:2rem !important;
    line-height:1.2 !important;
    letter-spacing:0.5px !important;
}
.trust-marks{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin:20px 0;
}

.trust-marks div{
    background:rgba(255,215,0,.08);
    border:1px solid rgba(255,215,0,.2);
    border-radius:8px;
    padding:10px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-align:center;
}
/* =====================================
   PREMIUM ORDER FORM OVERRIDE
   ===================================== */

.checkout-form-section{
    background:#171717 !important;
    border:2px solid rgba(255,215,0,.25) !important;
    border-radius:24px !important;
    padding:35px !important;
    box-shadow:
        0 15px 40px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05) !important;
}

/* REMOVE CLUTTERED GLOW */

.checkout-form-section::before,
.checkout-form-section::after{
    display:none !important;
}

/* HEADER */

.form-header{
    text-align:center !important;
    margin-bottom:25px !important;
}

.form-header p:first-child{
    color:#6EEB83 !important;
    font-size:18px !important;
    font-weight:800 !important;
    margin-bottom:15px !important;
}

/* PRICE */

.form-header span:first-child{
    font-size:24px !important;
    color:#777 !important;
}

.form-header span:last-child{
    color:#FFD700 !important;
    font-size:46px !important;
    font-weight:900 !important;
    text-shadow:0 0 15px rgba(255,215,0,.2) !important;
}

/* DESCRIPTION */

.form-header p{
    color:#ffffff !important;
    font-size:18px !important;
    line-height:1.6 !important;
}

/* INPUT FIELDS */

#name,
#phone,
input[type="text"],
input[type="tel"]{
    width:100% !important;
    height:68px !important;
    background:#ffffff !important;
    border:2px solid #e5e5e5 !important;
    border-radius:16px !important;
    font-size:22px !important;
    font-weight:600 !important;
    color:#111 !important;
    padding:0 20px !important;
    transition:.3s !important;
    box-sizing:border-box !important;
}

#name:focus,
#phone:focus,
input:focus{
    border-color:#FFD700 !important;
    box-shadow:0 0 15px rgba(255,215,0,.25) !important;
    outline:none !important;
}

input::placeholder{
    color:#666 !important;
    font-size:22px !important;
}

/* TRUST MARKS */

.trust-marks{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:10px !important;
    margin:25px 0 !important;
}

.trust-marks div{
    background:#202020 !important;
    border:1px solid rgba(255,215,0,.15) !important;
    color:#6EEB83 !important;
    padding:10px 14px !important;
    border-radius:10px !important;
    font-size:15px !important;
    font-weight:700 !important;
}

/* SUBMIT BUTTON */

.checkout-submit-btn{
    width:100% !important;
    height:78px !important;
    border:none !important;
    border-radius:16px !important;
    background:linear-gradient(
        135deg,
        #FFD700 0%,
        #F4C430 50%,
        #D4AF37 100%
    ) !important;
    color:#111 !important;
    font-size:30px !important;
    font-weight:900 !important;
    letter-spacing:1px !important;
    text-transform:uppercase !important;
    cursor:pointer !important;
    box-shadow:
        0 10px 25px rgba(255,215,0,.35) !important;
    transition:.3s !important;
}

.checkout-submit-btn:hover{
    transform:translateY(-3px) !important;
    box-shadow:
        0 15px 35px rgba(255,215,0,.45) !important;
}

/* PRIVACY MESSAGE */

.checkout-form-section small{
    display:block !important;
    text-align:center !important;
    margin-top:15px !important;
    color:#6EEB83 !important;
    font-size:16px !important;
    font-weight:700 !important;
}

/* MOBILE */

@media(max-width:768px){

    .checkout-form-section{
        padding:25px !important;
    }

    .form-header span:last-child{
        font-size:38px !important;
    }

    #name,
    #phone{
        height:62px !important;
        font-size:20px !important;
    }

    input::placeholder{
        font-size:20px !important;
    }

    .checkout-submit-btn{
        height:72px !important;
        font-size:26px !important;
    }

    .trust-marks{
        gap:8px !important;
    }

    .trust-marks div{
        font-size:14px !important;
        padding:8px 12px !important;
    }
}
/* =================================
   MAXIMUM VISIBILITY ORDER FORM
   ================================= */

.checkout-form-section{
    background:#111111 !important;
    border:3px solid #FFD700 !important;
    border-radius:20px !important;
    padding:30px !important;
}

/* REMOVE BRIGHT GLOW */

.checkout-form-section::before,
.checkout-form-section::after{
    display:none !important;
}

/* CASH ON DELIVERY */

.form-header p:first-child{
    color:#00ff66 !important;
    font-size:22px !important;
    font-weight:900 !important;
    text-align:center !important;
}

/* PRICE */

.form-header span:first-child{
    color:#999 !important;
    font-size:28px !important;
    font-weight:700 !important;
}

.form-header span:last-child{
    color:#FFD700 !important;
    font-size:52px !important;
    font-weight:900 !important;
    text-shadow:none !important;
}

/* DESCRIPTION */

.form-header p{
    color:#FFFFFF !important;
    font-size:22px !important;
    font-weight:700 !important;
    line-height:1.5 !important;
}

/* INPUTS */

#name,
#phone{
    background:#FFFFFF !important;
    color:#111111 !important;
    border:3px solid #FFD700 !important;
    height:70px !important;
    font-size:26px !important;
    font-weight:700 !important;
    border-radius:15px !important;
}

#name::placeholder,
#phone::placeholder{
    color:#666 !important;
    font-size:24px !important;
    font-weight:600 !important;
}

/* TRUST BADGES */

.trust-marks{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:12px !important;
    margin:25px 0 !important;
}

.trust-marks div{
    background:#1f1f1f !important;
    color:#00ff66 !important;
    border:2px solid #FFD700 !important;
    font-size:18px !important;
    font-weight:800 !important;
    padding:12px 16px !important;
    border-radius:12px !important;
}

/* BUTTON */

.checkout-submit-btn{
    background:#FFD700 !important;
    color:#000000 !important;
    height:85px !important;
    font-size:36px !important;
    font-weight:900 !important;
    border-radius:15px !important;
    border:none !important;
    text-shadow:none !important;
    box-shadow:0 0 25px rgba(255,215,0,.5) !important;
}

.checkout-submit-btn .btn-text{
    color:#000000 !important;
}

/* PRIVACY TEXT */

.checkout-form-section small{
    color:#00ff66 !important;
    font-size:18px !important;
    font-weight:800 !important;
    display:block !important;
    text-align:center !important;
    margin-top:15px !important;
}

/* SAME DAY DELIVERY */

.checkout-container > div:last-child p{
    color:#FFFFFF !important;
    font-size:28px !important;
    font-weight:900 !important;
    text-shadow:none !important;
}

/* MOBILE */

@media(max-width:768px){

    .form-header span:last-child{
        font-size:42px !important;
    }

    .form-header p{
        font-size:18px !important;
    }

    #name,
    #phone{
        font-size:22px !important;
        height:65px !important;
    }

    .checkout-submit-btn{
        font-size:28px !important;
        height:75px !important;
    }

    .trust-marks div{
        font-size:15px !important;
    }
}
/* =====================================
   REMOVE GREY BLUR FROM ORDER FORM
   ===================================== */

.checkout-form-section{
    background:#111111 !important;
    background-image:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    filter:none !important;
    box-shadow:none !important;
}

/* Kill any overlay layers */

.checkout-form-section::before,
.checkout-form-section::after,
.checkout-container::before,
.checkout-container::after{
    display:none !important;
    content:none !important;
}

/* Remove blur from all children */

.checkout-form-section *,
.checkout-container *{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
}

/* Clean premium border */

.checkout-form-section{
    border:2px solid #FFD700 !important;
    border-radius:20px !important;
    padding:30px !important;
}

/* Make text highly visible */

.checkout-form-section p,
.checkout-form-section h2,
.checkout-form-section h3,
.checkout-form-section span,
.checkout-form-section label{
    color:#FFFFFF !important;
    text-shadow:none !important;
}

/* Gold price */

.checkout-form-section span[style*="1.7rem"]{
    color:#FFD700 !important;
    font-weight:900 !important;
}

/* Inputs */

.checkout-form-section input{
    background:#FFFFFF !important;
    color:#111111 !important;
    border:2px solid #FFD700 !important;
}

/* Button */

.checkout-submit-btn{
    background:#FFD700 !important;
    color:#000000 !important;
    box-shadow:none !important;
}

.checkout-submit-btn span{
    color:#000000 !important;
}
/* ===================================
   MAXIMUM TEXT VISIBILITY OVERRIDE
   =================================== */

/* Remove ALL text shadows */

.checkout-form-section *,
.checkout-container *{
    text-shadow:none !important;
    filter:none !important;
}

/* Main form text */

.checkout-form-section p,
.checkout-form-section span,
.checkout-form-section div{
    color:#FFFFFF !important;
    font-weight:700 !important;
}

/* Cash On Delivery text */

.form-header p:first-child{
    color:#00ff66 !important;
    font-size:24px !important;
    font-weight:900 !important;
    text-align:center !important;
}

/* Old Price */

.form-header span:first-child{
    color:#BDBDBD !important;
    font-size:30px !important;
    font-weight:700 !important;
    opacity:1 !important;
}

/* New Price */

.form-header span:last-child{
    color:#FFD700 !important;
    font-size:54px !important;
    font-weight:900 !important;
    opacity:1 !important;
}

/* Description */

.form-header p{
    color:#FFFFFF !important;
    font-size:24px !important;
    line-height:1.5 !important;
    font-weight:800 !important;
}

/* Inputs */

#name,
#phone{
    background:#FFFFFF !important;
    color:#000000 !important;
    font-size:24px !important;
    font-weight:700 !important;
}

#name::placeholder,
#phone::placeholder{
    color:#555555 !important;
    font-size:24px !important;
    font-weight:600 !important;
}

/* Trust badges */

.trust-marks div{
    background:#111111 !important;
    border:2px solid #FFD700 !important;
    color:#00ff66 !important;
    font-size:20px !important;
    font-weight:900 !important;
}

/* Submit button */

.checkout-submit-btn{
    background:#FFD700 !important;
    border:none !important;
}

.checkout-submit-btn,
.checkout-submit-btn span,
.checkout-submit-btn .btn-text{
    color:#111111 !important;
    -webkit-text-fill-color:#111111 !important;
    font-size:42px !important;
    font-weight:900 !important;
    text-shadow:none !important;
}

/* Privacy text */

.checkout-form-section small{
    color:#00ff66 !important;
    font-size:20px !important;
    font-weight:800 !important;
}

/* Same day delivery */

.checkout-container > div:last-child p{
    color:#FFFFFF !important;
    font-size:34px !important;
    font-weight:900 !important;
    letter-spacing:2px !important;
}

/* Mobile */

@media(max-width:768px){

    .form-header p{
        font-size:20px !important;
    }

    .form-header span:last-child{
        font-size:42px !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:28px !important;
    }

    .trust-marks div{
        font-size:16px !important;
    }

    #name,
    #phone{
        font-size:20px !important;
    }
}
/* ==========================================
   CLEAN PREMIUM ORDER FORM
   ========================================== */

/* REMOVE GREY/SILVER BACKGROUND */

.checkout-form-section{
    background:#101010 !important;
    background-image:none !important;
    border:2px solid #FFD700 !important;
    border-radius:20px !important;
    padding:30px !important;
    box-shadow:0 10px 30px rgba(0,0,0,.4) !important;
}

/* REMOVE ALL OVERLAYS */

.checkout-form-section::before,
.checkout-form-section::after{
    display:none !important;
}

/* HEADER */

.form-header{
    text-align:center !important;
}

.form-header p:first-child{
    color:#4ADE80 !important;
    font-size:20px !important;
    font-weight:800 !important;
    margin-bottom:15px !important;
}

/* PRICE AREA */

.form-header span:first-child{
    color:#999 !important;
    font-size:24px !important;
    margin-right:10px !important;
}

.form-header span:last-child{
    color:#FFD700 !important;
    font-size:42px !important;
    font-weight:900 !important;
}

/* DESCRIPTION TEXT */

.form-header p{
    color:#FFFFFF !important;
    font-size:22px !important;
    font-weight:700 !important;
    line-height:1.4 !important;
    text-align:center !important;
    max-width:500px !important;
    margin:15px auto !important;
}

/* INPUTS */

#name,
#phone{
    width:100% !important;
    height:65px !important;
    background:#FFFFFF !important;
    border:2px solid #FFD700 !important;
    border-radius:14px !important;
    font-size:22px !important;
    color:#111 !important;
    padding:0 18px !important;
}

#name::placeholder,
#phone::placeholder{
    color:#666 !important;
    font-size:20px !important;
}

/* TRUST MARKS */

.trust-marks{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:10px !important;
    margin:20px 0 !important;
}

.trust-marks div{
    background:#181818 !important;
    color:#4ADE80 !important;
    border:1px solid #FFD700 !important;
    border-radius:10px !important;
    padding:10px 14px !important;
    font-size:15px !important;
    font-weight:700 !important;
}

/* BUTTON */

.checkout-submit-btn{
    width:100% !important;
    height:70px !important;
    background:linear-gradient(
        135deg,
        #FFD700,
        #F4C430
    ) !important;
    border:none !important;
    border-radius:14px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    box-shadow:0 8px 25px rgba(255,215,0,.35) !important;
}

/* FIX BROKEN BUTTON TEXT */

.checkout-submit-btn,
.checkout-submit-btn span,
.checkout-submit-btn .btn-text{
    color:#111111 !important;
    font-size:28px !important;
    font-weight:900 !important;
    line-height:1 !important;
    white-space:nowrap !important;
    text-align:center !important;
}

/* PRIVACY */

.checkout-form-section small{
    display:block !important;
    text-align:center !important;
    color:#4ADE80 !important;
    font-size:16px !important;
    font-weight:700 !important;
    margin-top:15px !important;
}

/* DELIVERY TEXT */

.checkout-container > div:last-child p{
    color:#FFFFFF !important;
    font-size:28px !important;
    font-weight:900 !important;
    text-align:center !important;
}

/* MOBILE */

@media(max-width:768px){

    .form-header p{
        font-size:18px !important;
    }

    .form-header span:last-child{
        font-size:34px !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span{
        font-size:22px !important;
    }

    .trust-marks div{
        font-size:14px !important;
    }
}
/* ==================================
   REMOVE SILVER BACKGROUND COMPLETELY
   ================================== */

.checkout-form-section{
    background:#0f0f0f !important;
    background-image:none !important;
    border:2px solid #FFD700 !important;
    border-radius:20px !important;
    padding:30px !important;
    box-shadow:
        0 10px 35px rgba(0,0,0,.5),
        inset 0 1px 0 rgba(255,255,255,.03) !important;
}

/* Kill every possible overlay */

.checkout-form-section::before,
.checkout-form-section::after,
.checkout-container::before,
.checkout-container::after{
    display:none !important;
    content:none !important;
}

/* Remove gradients from all child elements */

.checkout-form-section *{
    background-image:none;
}

/* Header */

.form-header{
    text-align:center !important;
}

.form-header p:first-child{
    color:#4ADE80 !important;
    font-size:20px !important;
    font-weight:800 !important;
}

/* Prices */

.form-header span:first-child{
    color:#8f8f8f !important;
    font-size:24px !important;
}

.form-header span:last-child{
    color:#FFD700 !important;
    font-size:44px !important;
    font-weight:900 !important;
}

/* Description */

.form-header p{
    color:#FFFFFF !important;
    font-size:22px !important;
    font-weight:700 !important;
    line-height:1.5 !important;
}

/* Inputs */

#name,
#phone{
    background:#FFFFFF !important;
    border:2px solid #FFD700 !important;
    border-radius:14px !important;
    color:#111111 !important;
    font-size:22px !important;
    height:65px !important;
}

#name::placeholder,
#phone::placeholder{
    color:#666 !important;
}

/* Trust marks */

.trust-marks{
    display:flex !important;
    justify-content:center !important;
    flex-wrap:wrap !important;
    gap:10px !important;
}

.trust-marks div{
    background:#151515 !important;
    border:1px solid #FFD700 !important;
    color:#4ADE80 !important;
    padding:10px 14px !important;
    border-radius:10px !important;
    font-weight:700 !important;
}

/* CTA */

.checkout-submit-btn{
    background:#FFD700 !important;
    color:#111111 !important;
    border:none !important;
    border-radius:14px !important;
    height:75px !important;
    box-shadow:0 0 25px rgba(255,215,0,.35) !important;
}

.checkout-submit-btn,
.checkout-submit-btn span,
.checkout-submit-btn .btn-text{
    color:#111111 !important;
    font-size:32px !important;
    font-weight:900 !important;
    white-space:nowrap !important;
}

/* Privacy */

.checkout-form-section small{
    color:#4ADE80 !important;
    font-size:15px !important;
    font-weight:700 !important;
}

/* Same day delivery */

.checkout-container > div:last-child p{
    color:#FFFFFF !important;
    font-size:28px !important;
    font-weight:900 !important;
}
/* ==========================================
   MASTER MOBILE OVERRIDE
   ========================================== */

@media screen and (max-width:768px){

    /* Prevent side scrolling everywhere */

    html,
    body{
        width:100% !important;
        max-width:100% !important;
        overflow-x:hidden !important;
        margin:0 !important;
        padding:0 !important;
    }

    *{
        box-sizing:border-box !important;
        max-width:100% !important;
    }

    /* Main containers */

    .container,
    .wrapper,
    .content,
    .step,
    .product-section,
    .product-showcase,
    .checkout-container,
    .checkout-content,
    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        margin-left:auto !important;
        margin-right:auto !important;
        padding-left:15px !important;
        padding-right:15px !important;
        overflow:hidden !important;
    }

    /* Headings */

    h1{
        font-size:32px !important;
        line-height:1.2 !important;
        text-align:center !important;
    }

    h2{
        font-size:28px !important;
        line-height:1.2 !important;
        text-align:center !important;
    }

    h3{
        font-size:24px !important;
        line-height:1.3 !important;
        text-align:center !important;
    }

    /* Paragraphs */

    p{
        font-size:18px !important;
        line-height:1.6 !important;
        word-wrap:break-word !important;
        text-align:center !important;
    }

    /* Images */

    img{
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
        display:block !important;
        margin:auto !important;
    }

    /* Buttons */

    button,
    .welcome-button,
    .checkout-submit-btn{

        width:100% !important;
        max-width:100% !important;

        height:auto !important;
        min-height:65px !important;

        padding:18px !important;

        font-size:20px !important;
        line-height:1.3 !important;

        white-space:normal !important;
        word-break:break-word !important;

        text-align:center !important;
    }

    /* Quiz answer buttons */

    .step button{
        margin-bottom:12px !important;
    }

    /* Inputs */

    input,
    select,
    textarea{

        width:100% !important;
        max-width:100% !important;

        height:60px !important;

        font-size:18px !important;

        padding:12px 15px !important;
    }

    /* Product section */

    .checkout-content{
        display:block !important;
    }

    .checkout-product-image-wrapper,
    .checkout-form-section{
        width:100% !important;
        min-width:unset !important;
        max-width:100% !important;
    }

    /* Trust marks */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:10px !important;
    }

    .trust-marks div{
        width:100% !important;
        text-align:center !important;
        padding:12px !important;
        font-size:15px !important;
    }

    /* Prices */

    .form-header span:last-child{
        display:block !important;
        font-size:36px !important;
        margin-top:10px !important;
    }

    /* Same Day Delivery */

    .checkout-container p{
        overflow-wrap:break-word !important;
    }

    /* Video */

    video,
    iframe{
        width:100% !important;
        height:auto !important;
    }

    /* Tables */

    table{
        display:block !important;
        overflow-x:auto !important;
        width:100% !important;
    }

    /* Fix negative margins */

    [style*="margin: -"]{
        margin-left:0 !important;
        margin-right:0 !important;
    }
}

/* ==========================================
   GLOBAL FIXES
   ========================================== */

html,
body{
    overflow-x:hidden !important;
}

*{
    box-sizing:border-box;
}
/* ======================================
   MASTER MOBILE OVERRIDE
   ====================================== */

@media only screen and (max-width:768px){

    html,
    body{
        overflow-x:hidden !important;
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
        padding:0 !important;
    }

    *{
        box-sizing:border-box !important;
    }

    /* Main containers */

    .container,
    .product-section,
    .product-showcase,
    .step,
    .checkout-container,
    .checkout-content,
    .checkout-form-section,
    .checkout-product-image-wrapper{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }

    /* Remove desktop flex layout */

    .checkout-content{
        display:block !important;
    }

    .checkout-product-image-wrapper{
        margin-bottom:20px !important;
    }

    /* Images */

    img{
        width:100% !important;
        max-width:100% !important;
        height:auto !important;
        display:block !important;
    }

    /* Header */

    #header-title{
        font-size:28px !important;
        line-height:1.2 !important;
    }

    #header-subtitle{
        font-size:16px !important;
    }

    /* Text */

    h1,h2,h3{
        text-align:center !important;
        line-height:1.3 !important;
    }

    p{
        text-align:center !important;
        line-height:1.6 !important;
    }

    /* Form section */

    .checkout-form-section{
        padding:20px !important;
        border-radius:16px !important;
    }

    /* Inputs */

    #name,
    #phone,
    input[type="text"],
    input[type="tel"]{
        width:100% !important;
        height:58px !important;
        font-size:18px !important;
        margin-bottom:12px !important;
    }

    /* Trust marks */

    .trust-marks{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        gap:8px !important;
        margin:15px 0 !important;
    }

    .trust-marks div{
        width:auto !important;
        max-width:48% !important;
        padding:8px 10px !important;
        font-size:12px !important;
        line-height:1.3 !important;
        text-align:center !important;
    }

    /* Button */

    .checkout-submit-btn{
        width:100% !important;
        height:65px !important;
        padding:0 15px !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:22px !important;
        line-height:1 !important;
        white-space:nowrap !important;
        text-align:center !important;
    }

    /* Price */

    .form-header span:last-child{
        font-size:34px !important;
    }

    /* Same day delivery */

    .checkout-container > div:last-child p{
        font-size:20px !important;
        line-height:1.4 !important;
        letter-spacing:1px !important;
    }

    /* Privacy text */

    .checkout-form-section small{
        font-size:14px !important;
        line-height:1.4 !important;
    }

    /* Remove any element causing overflow */

    div,
    section,
    article{
        max-width:100% !important;
    }
}
/* ======================================
   FORCE FULL WIDTH MOBILE FIX
   ====================================== */

@media (max-width:768px){

    .checkout-container,
    .checkout-content,
    .checkout-form-section,
    .checkout-product-image-wrapper,
    .step,
    .product-section{

        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;

        margin-left:0 !important;
        margin-right:0 !important;

        padding-left:15px !important;
        padding-right:15px !important;

        flex:none !important;
    }

    .checkout-content{
        display:block !important;
    }

    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        min-width:unset !important;
    }

    /* BUTTON */

    .checkout-submit-btn{
        width:100% !important;
        max-width:100% !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        height:65px !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:24px !important;
        white-space:nowrap !important;
        overflow:visible !important;
    }

    /* TRUST MARKS */

    .trust-marks{
        display:grid !important;
        grid-template-columns:repeat(2,1fr) !important;
        gap:8px !important;
        width:100% !important;
    }

    .trust-marks div{
        width:100% !important;
        max-width:none !important;
        font-size:13px !important;
        padding:10px 8px !important;
        text-align:center !important;
    }

    /* INPUTS */

    #name,
    #phone{
        width:100% !important;
        max-width:100% !important;
    }
}
/* ============================
   COMPACT MOBILE ORDER FORM
   ============================ */

@media (max-width:768px){

    .checkout-form-section{
        padding:15px !important;
    }

    /* Inputs */

    #name,
    #phone{
        height:50px !important;
        margin-bottom:8px !important;
        font-size:16px !important;
    }

    /* Trust badges */

    .trust-marks{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        gap:6px !important;
        margin:10px 0 !important;
    }

    .trust-marks div{
        padding:6px 8px !important;
        font-size:11px !important;
        border-radius:8px !important;
    }

    /* Button */

    .checkout-submit-btn{
        height:55px !important;
        margin-top:10px !important;
        margin-bottom:8px !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:20px !important;
    }

    /* Privacy text */

    .checkout-form-section small{
        font-size:12px !important;
        line-height:1.3 !important;
        margin-top:6px !important;
    }

    /* Remove huge spacing */

    .form-group{
        margin-bottom:10px !important;
    }

    .form-header{
        margin-bottom:10px !important;
    }

    /* SAME DAY DELIVERY */

    .checkout-container > div:last-child{
        margin-top:10px !important;
    }

    .checkout-container > div:last-child p{
        font-size:18px !important;
        margin:0 !important;
        padding:0 !important;
        line-height:1.2 !important;
    }

    /* Divider */

    hr,
    .divider,
    .checkout-container hr{
        margin:10px 0 !important;
    }
}
/* ==================================
   EXPAND MOBILE ORDER FORM
   ================================== */

@media (max-width:768px){

    /* Main form wrapper */

    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        min-width:100% !important;

        margin:0 !important;
        padding:20px 10px !important;

        border-radius:15px !important;
    }

    /* Remove narrow containers */

    .checkout-content,
    .checkout-container,
    .step{
        width:100% !important;
        max-width:100% !important;
        min-width:100% !important;

        padding-left:5px !important;
        padding-right:5px !important;
    }

    /* Inputs */

    #name,
    #phone{
        width:100% !important;
        max-width:100% !important;

        height:55px !important;
        font-size:18px !important;
    }

    /* Submit button */

    .checkout-submit-btn{
        width:100% !important;
        max-width:100% !important;

        height:65px !important;
        padding:0 !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:20px !important;
        white-space:nowrap !important;
    }

    /* Trust badges */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;

        width:100% !important;
    }

    .trust-marks div{
        width:100% !important;
        max-width:none !important;

        font-size:12px !important;
        padding:8px 5px !important;
    }

    /* Privacy text */

    .checkout-form-section small{
        font-size:13px !important;
        text-align:center !important;
    }
}
/* =====================================
   FORCE FULL WIDTH MOBILE LAYOUT
   ===================================== */

@media (max-width:768px){

    /* Main LP containers */

    .container,
    .step,
    .product-section,
    .product-showcase,
    .checkout-container,
    .checkout-content,
    .checkout-form-section{

        width:98% !important;
        max-width:98% !important;
        min-width:98% !important;

        margin-left:auto !important;
        margin-right:auto !important;

        padding-left:8px !important;
        padding-right:8px !important;

        box-sizing:border-box !important;
    }

    /* Kill desktop flex sizing */

    .checkout-product-image-wrapper,
    .checkout-form-section{
        flex:none !important;
        min-width:unset !important;
        max-width:100% !important;
        width:100% !important;
    }

    /* Form fields */

    #name,
    #phone{
        width:100% !important;
        height:58px !important;
        font-size:18px !important;
    }

    /* Trust badges */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:6px !important;
        width:100% !important;
    }

    .trust-marks div{
        width:100% !important;
        padding:10px 5px !important;
        font-size:13px !important;
        line-height:1.3 !important;
    }

    /* CTA */

    .checkout-submit-btn{
        width:100% !important;
        min-height:70px !important;
        padding:0 10px !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:18px !important;
        white-space:nowrap !important;
        letter-spacing:0 !important;
    }

    /* Privacy text */

    .checkout-form-section small{
        display:block !important;
        width:100% !important;
        font-size:14px !important;
        text-align:center !important;
    }

    /* Delivery text */

    .checkout-container > div:last-child p{
        font-size:18px !important;
        line-height:1.2 !important;
        margin:10px 0 !important;
    }
}
/* ===================================
   FORCE FULL WIDTH ON MOBILE
   =================================== */

@media (max-width:768px){

    html,
    body{
        width:100vw !important;
        max-width:100vw !important;
        overflow-x:hidden !important;
        margin:0 !important;
        padding:0 !important;
    }

    /* Every major LP wrapper */

    body > *,
    .container,
    .step,
    .product-section,
    .product-showcase,
    #step-container,
    .checkout-container,
    .checkout-content,
    .checkout-form-section{

        width:100% !important;
        max-width:100% !important;
        min-width:100% !important;

        margin-left:0 !important;
        margin-right:0 !important;

        box-sizing:border-box !important;
    }

    /* Remove desktop restrictions */

    [style*="max-width"]{
        max-width:none !important;
    }

    [style*="min-width"]{
        min-width:0 !important;
    }

    /* Product image and form */

    .checkout-product-image-wrapper,
    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        flex:none !important;
    }

    /* Button */

    .checkout-submit-btn{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        height:65px !important;
        padding:0 10px !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{
        font-size:24px !important;
        white-space:nowrap !important;
    }

    /* Trust marks */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;
        width:100% !important;
    }

    .trust-marks div{
        width:100% !important;
        font-size:12px !important;
    }
}
/* ==================================
   FORCE ORDER FORM FULL WIDTH
   ================================== */

@media (max-width:768px){

    .checkout-content{
        display:block !important;
    }

    .checkout-product-image-wrapper{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        flex:none !important;
        margin-bottom:20px !important;
    }

    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        flex:none !important;

        margin:0 !important;
        padding:20px !important;
    }

    /* Kill all inline min-width restrictions */

    .checkout-content *,
    .checkout-form-section *,
    .checkout-product-image-wrapper *{
        min-width:0 !important;
    }

    /* Full width button */

    .checkout-submit-btn{
        width:100% !important;
    }
}
/* =====================================
   FORCE ORDER FORM FULL WIDTH
   ===================================== */

.checkout-content{
    display:block !important;
}

.checkout-product-image-wrapper{
    display:none !important;
}

/* FORM TAKES FULL WIDTH */

.checkout-form-section{
    width:100% !important;
    max-width:100% !important;
    min-width:100% !important;

    flex:none !important;

    margin:0 auto !important;

    padding:25px !important;

    box-sizing:border-box !important;
}

/* FORM */

#order-form{
    width:100% !important;
}

/* INPUTS */

#name,
#phone{
    width:100% !important;
    max-width:100% !important;
    display:block !important;
}

/* TRUST BADGES */

.trust-marks{
    width:100% !important;

    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;

    gap:8px !important;
}

.trust-marks div{
    width:100% !important;
}

/* BUTTON */

.checkout-submit-btn{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
}

.checkout-submit-btn .btn-text{
    font-size:28px !important;
    white-space:nowrap !important;
}
/* ===================================
   FIX ORDER FORM WIDTH ON MOBILE
   =================================== */

@media (max-width:768px){

    /* Remove side-by-side layout */

    .checkout-content{
        display:block !important;
        width:100% !important;
    }

    /* Shrink image section */

    .checkout-product-image-wrapper{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
        flex:none !important;
        margin-bottom:15px !important;
    }

    .checkout-product-image img{
        transform:none !important;
        width:100% !important;
    }

    /* EXPAND FORM */

    .checkout-form-section{

        width:calc(100vw - 30px) !important;

        max-width:none !important;
        min-width:0 !important;

        flex:none !important;

        margin-left:-15px !important;
        margin-right:-15px !important;

        padding:20px !important;

        box-sizing:border-box !important;
    }

    /* FORM */

    #order-form{
        width:100% !important;
    }

    /* INPUTS */

    #name,
    #phone{
        width:100% !important;
        height:60px !important;
        font-size:18px !important;
    }

    /* TRUST MARKS */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;
        width:100% !important;
    }

    .trust-marks div{
        width:100% !important;
        padding:8px 6px !important;
        font-size:12px !important;
        line-height:1.3 !important;
    }

    /* BUTTON */

    .checkout-submit-btn{
        width:100% !important;
        height:65px !important;
    }

    .checkout-submit-btn .btn-text{
        font-size:22px !important;
        white-space:nowrap !important;
    }

    /* SAME DAY DELIVERY */

    .checkout-container > div:last-child p{
        font-size:20px !important;
        line-height:1.2 !important;
    }
}
@media (max-width:768px){
    .checkout-product-image img{
        transform:none !important;
    }
}
/* ===================================
   FINAL MOBILE WIDTH FIX
   =================================== */

@media (max-width:768px){

    /* Force every order element inside screen */

    .checkout-container,
    .checkout-content,
    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;

        margin:0 !important;
        padding:15px !important;

        overflow:hidden !important;
        box-sizing:border-box !important;
    }

    /* Kill any inline widths */

    .checkout-product-image-wrapper,
    .checkout-form-section{
        flex:none !important;
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;
    }

    /* Inputs */

    #name,
    #phone{
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
    }

    /* Trust badges */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;
        width:100% !important;
    }

    .trust-marks div{
        width:100% !important;
        min-width:0 !important;
        font-size:12px !important;
        padding:8px 4px !important;
        box-sizing:border-box !important;
    }

    /* Button */

    .checkout-submit-btn{
        width:100% !important;
        max-width:100% !important;
        box-sizing:border-box !important;
        padding:0 10px !important;
    }

    .checkout-submit-btn .btn-text{
        font-size:18px !important;
        white-space:nowrap !important;
    }
}
@media (max-width:768px){

    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        margin:0 !important;
        padding:15px !important;
        box-sizing:border-box !important;
    }

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;
    }

    .trust-marks div{
        font-size:12px !important;
        padding:8px 5px !important;
    }

    .checkout-submit-btn{
        width:100% !important;
        height:60px !important;
    }

    .checkout-submit-btn .btn-text{
        font-size:22px !important;
        white-space:nowrap !important;
    }
}
/* ===================================
   EXPAND ENTIRE ORDER SECTION
   =================================== */

.checkout-container{
    width:100% !important;
    max-width:1200px !important;
    margin:0 auto !important;
    padding:0 !important;
}

.checkout-content{
    width:100% !important;
    max-width:100% !important;
}

.checkout-form-section{
    width:100% !important;
    max-width:100% !important;
    display:block !important;
    box-sizing:border-box !important;
}

@media(max-width:768px){

    .step{
        width:100% !important;
        max-width:100% !important;
        padding:10px !important;
    }

    .product-section{
        width:100% !important;
        max-width:100% !important;
        padding:0 !important;
    }

    .product-showcase{
        width:100% !important;
        max-width:100% !important;
    }

    .checkout-container{
        width:100vw !important;
        max-width:100vw !important;
        margin-left:calc(50% - 50vw) !important;
        margin-right:calc(50% - 50vw) !important;
        padding:10px !important;
        box-sizing:border-box !important;
    }

    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        padding:15px !important;
    }
}
/* =====================================
   FINAL MOBILE POLISH FIX
   ===================================== */

@media (max-width:768px){

    /* Price section */

    .form-header div{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        flex-wrap:wrap !important;
        gap:8px !important;
    }

    .form-header span:first-child{
        font-size:28px !important;
        line-height:1 !important;
    }

    .form-header span:last-child{
        font-size:36px !important;
        line-height:1 !important;
        display:inline-block !important;
    }

    /* Button */

    .checkout-submit-btn{
        width:100% !important;
        max-width:100% !important;
        height:65px !important;
        overflow:hidden !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{

        font-size:18px !important;
        font-weight:900 !important;

        white-space:nowrap !important;

        overflow:hidden !important;
        text-overflow:ellipsis !important;

        text-align:center !important;
    }

    /* Privacy text */

    .checkout-form-section small{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
        text-align:center !important;
        font-size:14px !important;
        line-height:1.4 !important;
    }

    /* Form section */

    .checkout-form-section{
        padding:15px !important;
    }

    /* Trust marks */

    .trust-marks{
        gap:6px !important;
    }

    .trust-marks div{
        font-size:12px !important;
        padding:8px 6px !important;
    }
}
-/* ==================================
   FIX PAY ON DELIVERY BADGE
   ================================== */

.checkout-badge{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:100% !important;
    max-width:320px !important;

    margin:15px auto !important;

    padding:12px 16px !important;

    background:#e9eef3 !important;
    border-radius:999px !important;

    box-sizing:border-box !important;
}

.checkout-badge .secure-icon{
    margin-right:8px !important;
    flex-shrink:0 !important;
}

.checkout-badge span{
    font-size:18px !important;
    font-weight:700 !important;
    color:#0b5e9c !important;
    text-align:center !important;
}

/* Mobile */

@media(max-width:768px){

    .checkout-badge{
        width:90% !important;
        max-width:90% !important;
        margin:10px auto 20px auto !important;
        padding:10px 14px !important;
    }

    .checkout-badge span{
        font-size:16px !important;
    }
}
/* CENTER THE PAY ON DELIVERY BADGE */

.checkout-header{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
}

.checkout-badge{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    margin:15px auto !important;

    width:auto !important;
    min-width:280px !important;
    max-width:90% !important;

    padding:12px 25px !important;

    border-radius:50px !important;

    position:relative !important;
    left:auto !important;
    right:auto !important;
    transform:none !important;
}

.checkout-badge .secure-icon{
    position:static !important;
    margin-right:10px !important;
}

.checkout-badge span{
    text-align:center !important;
}

/* Mobile */

@media(max-width:768px){

    .checkout-badge{
        min-width:auto !important;
        width:auto !important;
        max-width:95% !important;
        padding:12px 20px !important;
    }
}
/* ==================================
   FIX PLACE ORDER NOW BUTTON
   ================================== */

.checkout-submit-btn{
    width:100% !important;
    max-width:100% !important;

    min-height:70px !important;
    height:auto !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:15px 20px !important;

    overflow:hidden !important;
    box-sizing:border-box !important;
}

.checkout-submit-btn .btn-text{
    display:block !important;

    width:100% !important;

    text-align:center !important;

    font-size:32px !important;
    font-weight:900 !important;

    line-height:1.1 !important;

    white-space:normal !important;
    word-break:keep-all !important;

    overflow:visible !important;
}

/* Mobile */

@media (max-width:768px){

    .checkout-submit-btn{
        min-height:65px !important;
        padding:12px !important;
    }

    .checkout-submit-btn .btn-text{
        font-size:24px !important;
        white-space:nowrap !important;
    }
}

@media (max-width:480px){

    .checkout-submit-btn .btn-text{
        font-size:20px !important;
    }
}
/* MOBILE CTA FIX */

@media (max-width:768px){

    .checkout-submit-btn .btn-text{
        font-size:20px !important;
        letter-spacing:1px !important;
    }
}

    .checkout-submit-btn .btn-text{

        font-size:20px !important;
        font-weight:900 !important;

        white-space:nowrap !important;
        line-height:1 !important;

        display:block !important;
        width:auto !important;

        text-align:center !important;
    }
    /* FORCE CTA TO FIT */

.checkout-submit-btn{
    width:100% !important;
    height:70px !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    overflow:hidden !important;
    padding:0 15px !important;
    box-sizing:border-box !important;
}

.checkout-submit-btn .btn-text,
.checkout-submit-btn span{

    font-size:18px !important;
    font-weight:900 !important;

    line-height:1 !important;

    white-space:nowrap !important;

    max-width:100% !important;

    overflow:hidden !important;
    text-overflow:ellipsis !important;

    display:block !important;
}
/* =====================================================
   NUCLEAR ORDER FORM MOBILE OVERRIDE
   ===================================================== */

@media (max-width:768px){

    /* FORM WRAPPER */

    .checkout-form-section{
        width:100% !important;
        max-width:100% !important;
        min-width:0 !important;

        margin:0 !important;
        padding:15px !important;

        box-sizing:border-box !important;
        overflow:hidden !important;

        background:#0b0b0b !important;
        border:2px solid #FFD700 !important;
        border-radius:16px !important;
    }

    /* PRICE */

    .form-header{
        text-align:center !important;
    }

    .form-header div{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        gap:8px !important;
        flex-wrap:nowrap !important;
    }

    .form-header span:first-child{
        font-size:22px !important;
    }

    .form-header span:last-child{
        font-size:32px !important;
    }

    /* INPUTS */

    #name,
    #phone{
        width:100% !important;
        max-width:100% !important;
        height:55px !important;

        padding:0 15px !important;

        font-size:18px !important;

        box-sizing:border-box !important;
    }

    /* TRUST MARKS */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:6px !important;

        width:100% !important;

        margin:12px 0 !important;
    }

    .trust-marks div{
        width:100% !important;

        padding:8px 4px !important;

        font-size:11px !important;
        line-height:1.3 !important;

        box-sizing:border-box !important;
    }

    /* BUTTON */

    .checkout-submit-btn{
        width:100% !important;
        max-width:100% !important;

        height:65px !important;

        padding:0 10px !important;

        overflow:visible !important;

        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        box-sizing:border-box !important;
    }

    .checkout-submit-btn,
    .checkout-submit-btn span,
    .checkout-submit-btn .btn-text{

        font-size:18px !important;
        font-weight:900 !important;

        white-space:nowrap !important;

        overflow:visible !important;
        text-overflow:unset !important;

        width:auto !important;
        max-width:none !important;

        line-height:1 !important;
    }

    /* PRIVACY TEXT */

    .checkout-form-section small{
        display:block !important;

        width:100% !important;

        text-align:center !important;

        font-size:13px !important;
        line-height:1.4 !important;

        margin-top:10px !important;
    }

    /* SAME DAY DELIVERY */

    .checkout-container > div:last-child p{
        font-size:18px !important;
        line-height:1.2 !important;
        letter-spacing:1px !important;
    }

    /* BADGE */

    .checkout-badge{
        width:auto !important;
        max-width:95% !important;

        margin:15px auto !important;

        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
    }

    .secure-icon{
        position:static !important;
        transform:none !important;
        margin-right:8px !important;
    }
}
/* =====================================
   RESET ORDER FORM MOBILE
   ===================================== */

@media (max-width:768px){

    /* Reset everything inside form */

    .checkout-form-section *,
    .checkout-form-section *::before,
    .checkout-form-section *::after{
        max-width:100% !important;
        box-sizing:border-box !important;
    }

    /* Form container */

    .checkout-form-section{
        display:block !important;
        width:100% !important;
        padding:20px !important;
        overflow:hidden !important;
    }

    /* Price section */

    .form-header{
        text-align:center !important;
    }

    .form-header div{
        display:block !important;
        text-align:center !important;
    }

    .form-header span{
        display:inline !important;
    }

    /* Inputs */

    #name,
    #phone{
        display:block !important;
        width:100% !important;
        height:55px !important;
        margin:10px 0 !important;
        padding:12px !important;
        font-size:18px !important;
    }

    /* Trust marks */

    .trust-marks{
        display:grid !important;
        grid-template-columns:1fr 1fr !important;
        gap:8px !important;
        margin:15px 0 !important;
    }

    .trust-marks div{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        min-height:40px !important;

        font-size:12px !important;
        text-align:center !important;
        padding:6px !important;
    }

    /* Button */

    .checkout-submit-btn{
        width:100% !important;
        height:65px !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        padding:0 !important;
    }

    .checkout-submit-btn .btn-text{
        font-size:13px !important;
        font-weight:900 !important;
        white-space:nowrap !important;
        display:block !important;
    }

    /* Privacy */

    .checkout-form-section small{
        display:block !important;
        text-align:center !important;
        font-size:14px !important;
        margin-top:10px !important;
    }
}
.price-row{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:10px 0 20px;
}

.new-price{
    color:#FFD700;
    font-size:42px;
    font-weight:900;
    line-height:1;
    text-align:center;
    display:block;
}

@media(max-width:768px){

    .new-price{
        font-size:36px;
    }
}
/* =====================================
   FORCE DESKTOP ORDER FORM STACKING
   ===================================== */

@media (min-width:769px){

    .checkout-form-section,
    .form-header,
    #order-form{
        display:block !important;
        width:100% !important;
        max-width:100% !important;
    }

    .form-header{
        text-align:center !important;
    }

    .form-header > *{
        display:block !important;
        width:100% !important;
        text-align:center !important;
    }

    .price-row,
    .form-header div{
        display:block !important;
        text-align:center !important;
        margin-bottom:15px !important;
    }

    .new-price{
        display:block !important;
        font-size:48px !important;
        margin:10px auto !important;
    }

    #name,
    #phone{
        display:block !important;
        width:100% !important;
        margin-bottom:15px !important;
    }

    .trust-marks{
        display:grid !important;
        grid-template-columns:repeat(2,1fr) !important;
        gap:10px !important;
        width:100% !important;
    }

    .checkout-submit-btn{
        width:100% !important;
    }
}
/* ==========================================
   HOW TO USE - PREMIUM LONGJACK XXXL
========================================== */

.how-to-use-section{
    width:100%;
    margin:40px auto;
    padding:35px;
    background:linear-gradient(180deg,#161616,#111111);
    border:1px solid rgba(255,215,0,.18);
    border-radius:22px;
    box-shadow:
        0 12px 35px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.03);
    overflow:hidden;
}

.how-title{
    text-align:center;
    color:#FFD700;
    font-size:2rem;
    font-weight:900;
    margin:0 0 30px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.how-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

.how-image{
    flex:1;
    text-align:center;
}

.how-image img{
    width:100%;
    max-width:300px;
    height:auto;
    display:block;
    margin:auto;
    border-radius:18px;
}

.how-content{
    flex:1;
}

.how-step{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}

.step-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:linear-gradient(135deg,#FFD700,#D4AF37);
    color:#111;
    font-size:26px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(255,215,0,.30);
}

.how-step h4{
    margin:0 0 8px;
    color:#FFD700;
    font-size:1.35rem;
    font-weight:800;
}

.how-step p{
    margin:0;
    color:#f3f3f3;
    font-size:1.05rem;
    line-height:1.8;
}

.how-note{
    margin-top:25px;
    padding:18px;
    border-radius:14px;
    background:rgba(110,235,131,.10);
    border:1px solid rgba(110,235,131,.30);
    color:#6EEB83;
    text-align:center;
    font-size:1rem;
    font-weight:700;
    line-height:1.7;
}

/* ==========================================
   TABLETS
========================================== */

@media (max-width:992px){

    .how-wrapper{
        gap:30px;
    }

    .how-title{
        font-size:1.8rem;
    }

    .how-image img{
        max-width:240px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .how-to-use-section{

        padding:25px 18px;
        margin:30px 0;
        border-radius:18px;

    }

    .how-wrapper{

        flex-direction:column;
        text-align:center;
        gap:25px;

    }

    .how-image{

        order:1;

    }

    .how-content{

        order:2;
        width:100%;

    }

    .how-image img{

        max-width:220px;

    }

    .how-title{

        font-size:1.6rem;
        margin-bottom:20px;

    }

    .how-step{

        text-align:left;
        gap:15px;
        margin-bottom:22px;

    }

    .step-icon{

        width:46px;
        height:46px;
        min-width:46px;
        font-size:22px;

    }

    .how-step h4{

        font-size:1.15rem;

    }

    .how-step p{

        font-size:1rem;
        line-height:1.7;

    }

    .how-note{

        font-size:.95rem;
        padding:15px;

    }

}

/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width:480px){

    .how-title{

        font-size:1.35rem;

    }

    .how-image img{

        max-width:180px;

    }

    .step-icon{

        width:42px;
        height:42px;
        min-width:42px;
        font-size:20px;

    }

    .how-step h4{

        font-size:1.05rem;

    }

    .how-step p{

        font-size:.95rem;

    }

}

