/* RTL version of styles.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5f6;
    direction: rtl;
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 36px;
    color: #e75480;
    margin: 80px 0 40px;
}

/* Contact Page Styles */
.contact-page .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
    color: #e75480;
    margin-bottom: 20px;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

/* Shipping & Delivery Page */
.shipping-page .shipping-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.shipping-option {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shipping-option h3 {
    color: #e75480;
    margin-bottom: 15px;
}

.shipping-tracking {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Returns & Exchange Page */
.returns-page .privacy-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.return-process ol {
    padding-right: 20px;
    margin-bottom: 20px;
}

.return-process li {
    margin-bottom: 15px;
}

/* FAQ Page */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #e75480;
    margin-bottom: 15px;
}

/* Our Story Page */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Mission & Vision Page */
.mission-vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Sustainability Page */
.sustainability-content {
    max-width: 800px;
    margin: 0 auto;
}

.practice-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Blog Page */
.blog-content {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Privacy Policy & Terms Page */
.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-section {
    margin-bottom: 30px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

/* Common Elements */
ul {
    padding-right: 20px;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 28px;
        margin: 60px 0 30px;
    }

    .shipping-details,
    .values-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .privacy-content,
    .terms-content {
        padding: 20px;
    }
}


 /* Reset and Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f5f6;
    direction: rtl; /* ADDED: Set direction to RTL */
    text-align: right; /* ADDED: Default text alignment to right */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #333;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #e75480;
    transition: color 0.3s;
}

a:hover {
    color: #d63b6b;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e75480;
}

.logo span {
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-right: 30px; /* CHANGED: margin-left to margin-right */
    margin-left: 0; /* ADDED: Reset margin-left if previously set elsewhere */
}

.nav-links a {
    font-weight: 600;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f9f5f6 0%, #f7e8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #e75480;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #666;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center; /* Keep text-align: center for buttons */
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #e75480;
    color: white;
    border: 2px solid #e75480;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(231, 84, 128, 0.3);
}

.btn-primary:hover {
    background-color: #d63b6b;
    border-color: #d63b6b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 84, 128, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #e75480;
    border: 2px solid #e75480;
}

.btn-secondary:hover {
    background-color: rgba(231, 84, 128, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    margin-top: 40px;
    position: relative;
}

.hero-badge {
    position: absolute;
    top: 20px;
    left: 20%; /* CHANGED: right to left for badge position */
    right: auto; /* ADDED: Reset right if previously set */
    background-color: #e75480;
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(-10deg); /* CHANGED: rotate 10deg to rotate -10deg to mirror rotation */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: rotate(-10deg) scale(1); /* CHANGED: rotate 10deg to rotate -10deg */
    }
    50% {
        transform: rotate(-10deg) scale(1.05); /* CHANGED: rotate 10deg to rotate -10deg */
    }
    100% {
        transform: rotate(-10deg) scale(1); /* CHANGED: rotate 10deg to rotate -10deg */
    }
}

.hero-badge-text {
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #e75480;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 50px;
    color: #e75480;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f9f5f6;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.features-image {
    flex: 1 1 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-content {
    flex: 1 1 500px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    color: #e75480;
    font-size: 24px;
    margin-right: 15px; /* CHANGED: margin-right to margin-left */
    margin-left: 0; /* ADDED: Reset margin-left if previously set elsewhere */
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #f9f5f6;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: """";
    position: absolute;
    top: 10px;
    right: 20px; /* CHANGED: left to right for quote position */
    left: auto; /* ADDED: Reset left if previously set */
    font-size: 80px;
    color: rgba(231, 84, 128, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #e75480;
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 18px;
    margin-top: 10px;
}

/* Limited Time Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e75480 0%, #d63b6b 100%);
    color: white;
    text-align: center;
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
}

.offer-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.offer-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.offer-highlight {
    background-color: white;
    color: #e75480;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
}

.countdown-container {
    margin-bottom: 30px;
}

.countdown-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-box {
    background-color: white;
    color: #333;
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
}

.countdown-box .number {
    font-size: 32px;
    font-weight: 700;
    color: #e75480;
    line-height: 1;
}

.countdown-box .label {
    font-size: 14px;
    margin-top: 5px;
}

.stock-counter {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background-color: #f9f5f6;
}

.order-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.order-details {
    flex: 1 1 500px;
    padding: 40px;
    /* No text-align change needed here as it inherits from body or is overridden */
}

.product-details {
    margin-bottom: 30px;
}

.product-description {
    font-size: 18px;
    color: #666;
}

.product-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.price-box {
    background-color: #f9f5f6;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    unicode-bidi: plaintext;
}

.price-box span {
    display: inline-block;
    direction: rtl;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
    margin-right: 10px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: #e75480;
}

.savings {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    color: #e75480;
    font-weight: 700;
    direction: rtl;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.guarantee {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.guarantee img {
    margin-right: 15px; /* CHANGED: margin-right to margin-left */
    margin-left: 0; /* ADDED: Reset margin-left if previously set elsewhere */
}

.guarantee span {
    font-weight: 600;
}

.order-form {
    flex: 1 1 500px;
    padding: 40px;
    background-color: #f8f9fa;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;

    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    text-align: right; /* ADDED: Form inputs text align right */
}

.form-control:focus {
    border-color: #e75480;
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-direction: row-reverse; /* ADDED: Reverse form row items */
}

.form-col {
    flex: 1;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    flex-direction: row-reverse; /* ADDED: Reverse quantity selector items */
}

.quantity-btn {
    padding: 10px 15px;
    background-color: #f1f1f1;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    border-right: 1px solid #ddd; /* CHANGED: border-left to border-right */
    border-left: none; /* ADDED: Remove border-left if previously set */
}

/* If you had a specific 'quantity-btn:first-child' style, you would need to adjust it to ':last-child' in RTL */
.quantity-btn:last-child {
    border-right: none; /* CHANGED: border-left to border-right */
}


.quantity-value {
    padding: 10px 15px;

    min-width: 50px;
    text-align: center;
    font-weight: 600;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    background-color: #e75480;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #d63b6b;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(231, 84, 128, 0.3);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #333;
    color: #f1f1f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;

    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e75480;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #aaa;
    font-size: 14px;
}

.footer-bottom a {
    color: #ccc;
}

/* Exit Intent Popup */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center; /* Keep text-align: center for popup content */
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 15px; /* CHANGED: right to left for close button position */
    right: auto; /* ADDED: Reset right if previously set */
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.popup-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e75480;
}

.popup-offer {
    background-color: #f9f5f6;

    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.popup-offer h3 {
    color: #e75480;
}

.popup-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #e75480;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.popup-btn:hover {
    background-color: #d63b6b;
}

.popup-skip {
    color: #999;
    cursor: pointer;
    font-size: 14px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px; /* CHANGED: right to left for chat widget position */
    right: auto; /* ADDED: Reset right if previously set */
    width: 60px;
    height: 60px;
    background-color: #e75480;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 30px;
    }

    .countdown-box {
        min-width: 60px;
        padding: 10px;
    }

    .countdown-box .number {
        font-size: 24px;
    }

    .countdown-box .label {
        font-size: 12px;
    }

    .order-details, .order-form {
        padding: 25px;
    }

    .nav-links {
        display: none;
    }
}



        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f5f6;
            direction: rtl; /* ADDED: Set direction to RTL */
            text-align: right; /* ADDED: Default text alignment to right */
        }

        .container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Thank you page styles */
        .thank-you-container {
            text-align: center;
            padding: 50px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin: 50px auto;
        }

        .success-icon {
            color: #4CAF50;
            font-size: 80px;
            margin-bottom: 30px;
        }

        .thank-you-title {
            font-size: 36px;
            color: #e75480;
            margin-bottom: 20px;
        }

        .order-id {
            font-size: 18px;
            background-color: #f9f5f6;
            padding: 10px 20px;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 30px;
        }

        .next-steps {
            max-width: 600px;
            margin: 0 auto;
            text-align: right; /* CHANGED: text-align: left to text-align: right */
            margin-bottom: 30px;
        }

        .next-steps h3 {
            margin-bottom: 15px;
            color: #333;
            font-size: 22px;
            text-align: center; /* Keep text-align: center for heading */
        }

        .next-steps ul {
            list-style-type: none;
            padding-right: 20px; /* CHANGED: padding-left to padding-right */
            padding-left: 0; /* ADDED: Reset padding-left if previously set */
        }

        .next-steps li {
            margin-bottom: 15px;
            position: relative;
            padding-right: 30px; /* CHANGED: padding-left to padding-right */
            padding-left: 0; /* ADDED: Reset padding-left if previously set */
        }

        .next-steps li:before {
            content: "✓";
            color: #4CAF50;
            position: absolute;
            right: 0; /* CHANGED: left to right for checkmark position */
            left: auto; /* ADDED: Reset left if previously set */
            font-weight: bold;
        }

        .cta-buttons {
            margin-top: 40px;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            margin: 0 10px 10px;
            transition: all 0.3s;
        }

        .btn-primary {
            background-color: #e75480;
            color: white;
            border: 2px solid #e75480;
        }

        .btn-primary:hover {
            background-color: #d63b6b;
            border-color: #d63b6b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 84, 128, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: #e75480;
            border: 2px solid #e75480;
        }

        .btn-secondary:hover {
            background-color: rgba(231, 84, 128, 0.1);
            transform: translateY(-3px);
        }

        /* Social sharing section */
        .social-share {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .social-share h3 {
            margin-bottom: 20px;
            font-size: 20px;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .social-btn:hover {
            transform: translateY(-5px);
        }

        .facebook {
            background-color: #3b5998;
        }

        .twitter {
            background-color: #1da1f2;
        }

        .instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .pinterest {
            background-color: #bd081c;
        }

        /* Responsive adjustments */
        @media screen and (max-width: 600px) {
            .thank-you-title {
                font-size: 28px;
            }

            .order-id {
                font-size: 16px;
            }

            .next-steps h3 {
                font-size: 20px;
            }
        }