/* Base CSS & Variables */
:root {
    --primary-color: #ff477e; /* Vibrant soft pink/red */
    --primary-hover: #e0356a;
    --secondary-color: #f8f9fa;
    --text-dark: #2b2b2b;
    --text-light: #6c757d;
    --success-color: #20c997;
    --bg-light: #fff0f3;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(255, 71, 126, 0.15);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7ea5 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 71, 126, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 20px;
    width: 100%;
    max-width: 400px;
}

/* Header */
.header {
    padding: 20px 0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.badge {
    background: #ffe3e3;
    color: #e03131;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    color: #1a1a1a;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-price {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.old-price {
    font-size: 20px;
    color: #adb5bd;
    text-decoration: line-through;
}

.new-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guarantee {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 700;
    margin: 0;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    width: 100%;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ffd43b;
    color: #212529;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    transform: rotate(15deg);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background: white;
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* Lifestyle Section */
.lifestyle {
    padding: 80px 0;
    background: var(--bg-light);
}

.lifestyle-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.lifestyle-image {
    flex: 1;
}

.lifestyle-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.lifestyle-text {
    flex: 1;
}

.lifestyle-text h2 {
    font-size: 32px;
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 16px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.trust-box {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
    border-right: 4px solid var(--success-color);
}

.trust-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--success-color);
}

.trust-box p {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Order Form Section */
.order-section {
    padding: 80px 0;
    background: #ffffff;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid #eee;
}

.order-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-header h2 {
    font-size: 28px;
    color: var(--primary-color);
}

.offers-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.offer-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    border-color: #ffb3c6;
    background: #fffcfd;
}

.offer-card.selected {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.offer-card input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    accent-color: var(--primary-color);
}

.offer-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.offer-title {
    font-weight: 700;
    font-size: 18px;
}

.tag {
    background: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 10px;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.offer-price .old {
    font-size: 14px;
    color: #adb5bd;
    text-decoration: line-through;
}

.offer-price .new {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.shipping-note {
    font-size: 13px;
    color: var(--success-color);
    width: 100%;
    margin-top: 5px;
    font-weight: 700;
}

/* Form Styles */
.product-selection-group, .customer-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.product-selection-group h4, .customer-info h4 {
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 71, 126, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.order-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
}

.total-price-display {
    color: var(--primary-color);
}

.summary-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 22px;
}

.secure-checkout {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: var(--success-color);
    font-weight: bold;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 18px;
    color: var(--text-light);
}

/* Colors Gallery */
.colors-gallery {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.color-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
}
.color-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}
.color-card img {
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    width: 100%;
}
.color-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content, .lifestyle-content {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-price {
        justify-content: center;
    }

    .hero-image img {
        transform: rotate(0);
        margin-top: 30px;
    }

    .discount-badge {
        right: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .order-container {
        padding: 20px;
    }
}
