:root {
    --primary-red: #b3241e;
    --primary-red-dark: #c00;
    --secondary-red: #8b1c17;
    --accent-gold: #d4af37;
    --accent-gold-light: #c9a35c;
    --text-primary: #111;
    --text-secondary: #222;
    --text-light: #666;
    --bg-primary: #fff;
    --bg-secondary: #f9f9f9;
    --bg-tertiary: #f5f5f5;
    --bg-form: #222;
    --border-primary: #e5e5e5;
    --border-secondary: #ddd;
    --shadow-sm: 0 1px 2px 0 rgba(179, 36, 30, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(179, 36, 30, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(179, 36, 30, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    direction: rtl;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100vw;
}

.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, #1a1a1a 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(179, 36, 30, 0.4);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.header-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.header-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), white, var(--accent-gold));
    border-radius: 50px;
    z-index: -1;
}

.header h1 {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(45deg, white, var(--accent-gold-light), white);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out 0.2s both, shimmer 3s ease-in-out infinite;
}

.header-subtitle {
    font-size: clamp(18px, 4.5vw, 26px);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    background: linear-gradient(45deg, white, #f0f0f0, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
}

.header-subtitle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), white, var(--accent-gold));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
}

.header-offer {
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.offer-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(212, 175, 55, 0.2));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 24px 32px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    animation: pulse-offer 2s ease-in-out infinite;
}

.offer-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.offer-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 6px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.offer-text p {
    font-size: 16px;
    color: white;
    margin: 0;
    opacity: 0.95;
}

@keyframes pulse-offer {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    }
}

.header-cta {
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="white"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        min-height: 60vh;
    }
    
    .header-content {
        padding: 40px 0;
    }
    
    .header-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .header-feature {
        padding: 16px;
    }
    
    .header-wave {
        height: 60px;
    }
    
    .header-cta-button {
        padding: 16px 28px;
        font-size: 16px;
    }

    .offer-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }
    
    .offer-text h3 {
        font-size: 18px;
    }
    
    .offer-text p {
        font-size: 15px;
    }
    
    .offer-badge-overlay {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 8px;
        min-width: 40px;
        min-height: 40px;
    }
}

.product-showcase {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 0;
    margin: 40px 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
}

.product-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 900px;
}

.product-image {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: auto;
    object-fit: cover; /* fills width, keeps aspect ratio */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    object-fit: cover;
    display: block;
}

.offer-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: pulse-badge 2s infinite;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* prevent horizontal scroll */
}
@media (max-width: 480px) {
    .header {
        min-height: 50vh;
    }
    
    .header-content {
        padding: 32px 0;
    }
    
    .header-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .header-badge {
        font-size: 11px;
        padding: 10px 20px;
    }
    
    .header-wave {
        height: 40px;
    }

    .offer-highlight {
        padding: 18px 20px;
    }
    
    .offer-icon {
        font-size: 32px;
    }
    
    .offer-text h3 {
        font-size: 16px;
    }
    
    .offer-text p {
        font-size: 14px;
    }
    
    .offer-badge-overlay {
        top: 8px;
        right: 8px;
        font-size: 10px;
        padding: 4px 6px;
        min-width: 32px;
        min-height: 32px;
        border-width: 1px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
    max-width: 1000px;
}

.order-section {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-red));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.order-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-icon {
    font-size: 18px;
    color: var(--primary-red);
}

.form-container {
    background-color: var(--bg-form);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.form-row.two-cols {
    grid-template-columns: 1fr 1fr;
}

.form-row.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--bg-primary);
    font-size: 14px;
}

.form-input {
    padding: 12px;
    border: 2px solid var(--border-secondary);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-help {
    margin-top: 4px;
    font-size: 12px;
    color: #ccc;
    line-height: 1.3;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.quantity-container {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-primary);
    max-width: 140px;
}

.qty-btn {
    background-color: var(--primary-red);
    border: none;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qty-btn:hover {
    background-color: var(--secondary-red);
}

.quantity-input {
    border: none;
    text-align: center;
    font-weight: 600;
    padding: 12px 16px;
    width: 60px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.quantity-input:focus {
    box-shadow: none;
}

.price-display {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--accent-gold);
    min-width: 140px;
}

.price-amount {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.price-note {
    font-size: 11px;
    opacity: 0.8;
}

.delivery-info {
    background-color: var(--bg-secondary);
    padding: 16px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-right: 4px solid var(--accent-gold);
}

.delivery-info h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}

.delivery-info ul {
    list-style: none;
    color: var(--text-secondary);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.delivery-info li {
    padding: 4px 0;
    position: relative;
    padding-right: 20px;
    font-size: 14px;
}

.delivery-info li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.delivery-option {
    position: relative;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.delivery-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 3px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.delivery-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 36, 30, 0.1), transparent);
    transition: left 0.5s ease;
}

.delivery-label:hover::before {
    left: 100%;
}

.delivery-label:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 36, 30, 0.15);
    border-color: var(--primary-red);
}

.delivery-option input[type="radio"]:checked + .delivery-label {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(179, 36, 30, 0.05) 0%, rgba(179, 36, 30, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(179, 36, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.delivery-option input[type="radio"]:checked + .delivery-label::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    animation: checkmark 0.3s ease-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.delivery-icon {
    font-size: 28px;
    flex-shrink: 0;
    padding: 12px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--border-primary));
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + .delivery-label .delivery-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    transform: scale(1.1);
}

.delivery-info {
    flex: 1;
}

.delivery-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.delivery-option input[type="radio"]:checked + .delivery-label .delivery-info h4 {
    color: var(--primary-red);
}

.delivery-price {
    font-size: 15px;
    color: var(--primary-red);
    font-weight: 600;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.delivery-note {
    padding: 16px;
    background: linear-gradient(135deg, #fef3cd, #fde68a);
    color: #92400e;
    border-radius: var(--radius-md);
    font-size: 14px;
    text-align: center;
    border: 1px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.delivery-note.unavailable {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    border-color: #ef4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.price-breakdown {
    background-color: var(--bg-secondary);
    padding: 16px;
    border-radius: var (--radius-md);
    border: 2px solid var(--border-secondary);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 8px 0;
    border-top: 1px solid var(--border-secondary);
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var (--primary-red);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-container input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
}

.terms-link {
    color: var(--accent-gold);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(179, 36, 30, 0.3);
    margin-top: 12px;
}

.submit-button:hover {
    background: linear-gradient(45deg, var(--secondary-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 36, 30, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    background: linear-gradient(45deg, #999, #777) !important;
}

.form-input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-input.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.benefit-card {
    background-color: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var (--accent-gold);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var (--primary-red);
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.guarantee-banner {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, #2a2a2a 100%);
    color: white;
    margin-top: 60px;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-red), var(--accent-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 1px;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section p:first-of-type {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 300;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(-4px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -20px -20px -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-bottom a:hover {
    color: #f4d03f;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .social-links {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-bottom p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 24px;
    }
    
    .footer-section h4 {
        font-size: 18px;
    }
    
    .footer-section p {
        font-size: 15px;
    }
    
    .social-link {
        font-size: 15px;
        padding: 10px 14px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-certificates {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-certificates span {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .form-row,
    .form-row.two-cols,
    .form-row.three-cols {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
    }
    
    .delivery-info ul {
        grid-template-columns: 1fr;
    }
    
    .order-section,
    .form-container {
        padding: 20px;
    }
    
    .footer-certificates {
        flex-direction: column;
        gap: 8px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .delivery-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .delivery-label {
        padding: 16px;
        gap: 12px;
    }
    
    .delivery-icon {
        font-size: 24px;
        padding: 10px;
    }
    
    .delivery-info h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .quantity-container,
    .price-display {
        max-width: none;
        min-width: auto;
    }
    
    .form-container {
        padding: 16px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .order-section,
    .form-container {
        padding: 20px;
    }
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(179, 36, 30, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-glow 2s infinite;
    visibility: visible;
    opacity: 1;
}

.floating-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(179, 36, 30, 0.5);
    background: linear-gradient(45deg, var(--secondary-red), var(--primary-red));
}

.floating-order-btn .btn-icon {
    font-size: 18px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(179, 36, 30, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(179, 36, 30, 0.6), 0 0 20px rgba(179, 36, 30, 0.3);
    }
}

@media (max-width: 768px) {
    .floating-order-btn {
        bottom: 16px;
        right: 16px;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .floating-order-btn {
        bottom: 12px;
        right: 12px;
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Offer Banner */
.offer-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 16px 20px;
    border-radius: var (--radius-lg);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: bounce-in 0.6s ease-out;
}

.offer-banner.active {
    background: linear-gradient(45deg, var(--success-green), #38a169);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

@keyframes bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.header-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 50%, var(--accent-gold-light) 100%);
    color: var(--text-primary);
    padding: 20px 40px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.header-cta-button::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 50%, var(--accent-gold-light) 100%);
    border-radius: 60px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header-cta-button:hover::before {
    left: 100%;
}

.header-cta-button:hover::after {
    opacity: 0.7;
}

.header-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.header-cta-button:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.header-cta-button span:first-child {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: bounce 2s ease-in-out infinite;
}

.header-cta-button span:last-child {
    background: linear-gradient(45deg, var(--text-primary), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@media (max-width: 768px) {
    .header-cta-button {
        padding: 18px 32px;
        font-size: 18px;
        gap: 12px;
    }
    
    .header-cta-button span:first-child {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .header-cta-button {
        padding: 16px 28px;
        font-size: 16px;
        gap: 10px;
    }
    
    .header-cta-button span:first-child {
        font-size: 20px;
    }
}

.price-announcement {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 32px 24px;
    border-radius: 20px;
    margin-top: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.price-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold), var(--primary-red));
}

.discount-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.discount-text {
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(179, 36, 30, 0.3);
}

.discount-percentage {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: pulse-discount 2s infinite;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.price-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.old-price,
.current-price {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
}

.old-price {
    background: #fee2e2;
    border: 1px solid #fecaca;
    position: relative;
}

.old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #dc2626;
    transform: translateY(-50%) rotate(-5deg);
}

.current-price {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.price-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.old-price-value {
    font-size: 20px;
    font-weight: 600;
    color: #dc2626;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.savings {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.offer-timer {
    text-align: center;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 16px;
    background: rgba(179, 36, 30, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(179, 36, 30, 0.2);
}

@media (max-width: 768px) {
    .price-announcement {
        padding: 24px 20px;
        margin-top: 20px;
    }
    
    .price-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .discount-badge {
        flex-direction: column;
        gap: 8px;
    }
    
    .current-price-value {
        font-size: 24px;
    }
    
    .savings {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .price-announcement {
        padding: 20px 16px;
    }
    
    .discount-text {
        font-size: 14px;
        padding: 6px 16px;
    }
    
    .discount-percentage {
        font-size: 16px;
        padding: 6px 12px;
        min-width: 45px;
    }
    
    .offer-timer {
        font-size: 14px;
    }
}

.offer-badge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    font-size: 14px;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: pulse-badge 2s infinite;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-badge {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
}

@media (max-width: 768px) {
    .offer-badge-overlay {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 8px;
        min-width: 40px;
        min-height: 40px;
    }
}

@media (max-width: 480px) {
    .offer-badge-overlay {
        top: 8px;
        right: 8px;
        font-size: 10px;
        padding: 4px 6px;
        min-width: 32px;
        min-height: 32px;
        border-width: 1px;
    }
}
