@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/caviar_dreams/CaviarDreams.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/caviar_dreams/CaviarDreams_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/caviar_dreams/CaviarDreams_Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Caviar Dreams';
    src: url('fonts/caviar_dreams/CaviarDreams_BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'TT Ramillas';
    src: url('fonts/tt_ramillas/TT Ramillas Trial Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TT Ramillas';
    src: url('fonts/tt_ramillas/TT Ramillas Trial Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TT Ramillas';
    src: url('fonts/tt_ramillas/TT Ramillas Trial Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'TT Ramillas';
    src: url('fonts/tt_ramillas/TT Ramillas Trial Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'The Bold Font';
    src: url('fonts/the_bold_font/THEBOLDFONT-FREEVERSION.woff') format('woff'),
         url('fonts/the_bold_font/THEBOLDFONT-FREEVERSION.ttf') format('truetype'),
         url('fonts/the_bold_font/THEBOLDFONT-FREEVERSION.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ZEYADA Arabic';
    src: url('fonts/alfont_com_ZEYADAArabic-VF.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Caviar Dreams', sans-serif;
    background-color: #f5f0e8;
    color: #333;
    overflow-x: hidden;
}

/* Top Header Bar */
.top-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #5c4a3a;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Caviar Dreams', sans-serif;
    letter-spacing: 0.5px;
    z-index: 101;
    line-height: 1.2;
    box-sizing: border-box;
    height: 28px;
}

/* Main Navigation */
.main-nav {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 15px 0;
    z-index: 100;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: -1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Caviar Dreams', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    letter-spacing: 1px;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.diamond {
    font-size: 8px;
}

.arrow {
    font-size: 10px;
    margin-left: 3px;
}

.nav-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-icon {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s;
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}

.utility-icon:hover {
    opacity: 0.8;
}

.language-switcher {
    font-family: 'Caviar Dreams', sans-serif;
    color: white;
    font-size: 13px;
    margin-left: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 2px 5px;
}

.lang-btn:hover {
    opacity: 0.7;
}

.lang-btn.active {
    opacity: 1;
    font-weight: bold;
    text-decoration: underline;
}

.lang-separator {
    opacity: 0.5;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #e8ddd4;
}

.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    left: 8%;
    bottom: 15%;
    z-index: 10;
    color: white;
    max-width: 500px;
}

.hero-headline {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.hero-subheadline {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.discover-btn {
    font-family: 'Caviar Dreams', sans-serif;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2px;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #8b7355;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    transition: opacity 0.3s;
}

.discover-btn:hover {
    opacity: 0.8;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5c4a3a;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    transform: scale(1.3);
}

/* Benefits Sections */
.benefits-section {
    width: 100%;
    padding: 100px 0;
    background-color: #f5f0e8;
}

.dates-section {
    background-color: #f5f0e8;
}

.louban-section {
    background-color: #e8ddd4;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

.benefits-container.reverse {
    flex-direction: row-reverse;
}

.benefits-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefits-image:hover img {
    transform: scale(1.05);
}

.benefits-content {
    flex: 1;
    color: #5c4a3a;
}

.benefits-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 0px;
    color: #5c4a3a;
    line-height: 1.2;
}

.benefits-subtitle {
    font-family: 'ZEYADA Arabic', 'Caviar Dreams', sans-serif;
    font-size: 44px;
    color: #a74e00;
    margin-bottom: 40px;
    font-weight: 300;
    direction: rtl;
    text-align: center;
    margin-top: 0px;

}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(92, 74, 58, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #5c4a3a;
}

.benefit-item p {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #5c4a3a;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-content {
        left: 5%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        font-size: 12px;
    }

    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .hero-content {
        left: 5%;
        max-width: 300px;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .benefits-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .benefits-container.reverse {
        flex-direction: column;
    }

    .benefits-image {
        height: 400px;
        width: 100%;
    }

    .benefits-title {
        font-size: 32px;
    }

    .benefits-subtitle {
        font-size: 20px;
    }

    .benefit-item h3 {
        font-size: 20px;
    }

    .benefit-item p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .benefits-section {
        padding: 80px 0;
    }

    .benefits-container {
        gap: 50px;
    }

    .benefits-image {
        height: 450px;
    }

    .benefits-title {
        font-size: 36px;
    }
}

/* Footer */
.main-footer {
    background-color: #5c4a3a;
    color: #f5f0e8;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #e8ddd4;
    max-width: 300px;
}

.footer-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e8ddd4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-family: 'Caviar Dreams', sans-serif;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #e8ddd4;
    line-height: 1.6;
    font-family: 'Caviar Dreams', sans-serif;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #e8ddd4;
    margin: 0;
    font-family: 'Caviar Dreams', sans-serif;
}

/* Verify Hero Section */
.verify-hero-section {
    position: relative;
    width: 100%;
    padding: 100px 0 80px;
    background-color: #e8ddd4;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verify-hero-content {
    width: 100%;
    text-align: center;
    padding: 0 40px 40px;
    z-index: 10;
}

.verify-hero-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    color: #5c4a3a;
    margin-bottom: 40px;
}

.verify-hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.verify-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Verify Product Section */
.verify-section {
    width: 100%;
    padding: 0 0 100px;
    background-color: #f5f0e8;
}

.verify-hero-section .verify-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.verify-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.verify-header {
    text-align: center;
    margin-bottom: 60px;
}

.verify-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #5c4a3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.verify-subtitle {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 20px;
    color: #8b7355;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.verify-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 0 0 60px;
}

.verify-step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verify-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #a74e00;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(167, 78, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #5c4a3a;
    margin-bottom: 15px;
}

.step-content p {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    color: #5c4a3a;
    line-height: 1.7;
    opacity: 0.9;
}

/* QR Scanner Section */
.qr-scanner-section {
    margin: 40px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8ddd4 100%);
    border-radius: 12px;
    text-align: center;
}

.qr-scanner-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #5c4a3a;
    margin-bottom: 15px;
}

.qr-scanner-description {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    color: #5c4a3a;
    margin-bottom: 40px;
    opacity: 0.9;
}

.qr-scanner-container {
    max-width: 500px;
    margin: 0 auto;
}

#qr-reader {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qr-reader video {
    width: 100%;
    border-radius: 12px;
}

.scan-btn {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #a74e00 0%, #8b3d00 100%);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.scan-btn:hover {
    background: linear-gradient(135deg, #8b3d00 0%, #6b2d00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 78, 0, 0.3);
}

.scan-btn.stop-btn {
    background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
}

.scan-btn.stop-btn:hover {
    background: linear-gradient(135deg, #6b5a45 0%, #4a3d2f 100%);
}

.qr-result {
    margin-top: 30px;
    padding: 30px;
    border-radius: 12px;
    animation: fadeIn 0.5s ease;
}

.qr-result-content {
    text-align: center;
}

.qr-result-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    font-weight: bold;
}

.qr-result-icon.authentic {
    background-color: #d4edda;
    color: #28a745;
    border: 3px solid #28a745;
}

.qr-result-icon.fake {
    background-color: #f8d7da;
    color: #dc3545;
    border: 3px solid #dc3545;
}

.qr-result-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.qr-result-title.authentic {
    color: #28a745;
}

.qr-result-title.fake {
    color: #dc3545;
}

.qr-result-message {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.qr-result-message.authentic {
    color: #155724;
}

.qr-result-message.fake {
    color: #721c24;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-warning {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe8cc 100%);
    border-left: 4px solid #a74e00;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.warning-content h3 {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #a74e00;
    margin-bottom: 12px;
}

.warning-content p {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    color: #5c4a3a;
    line-height: 1.7;
}

/* QR Scanner Responsive */
@media (max-width: 768px) {
    .qr-scanner-section {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .qr-scanner-title {
        font-size: 28px;
    }

    .qr-scanner-description {
        font-size: 16px;
    }

    #qr-reader {
        min-height: 250px;
    }

    .scan-btn {
        font-size: 16px;
        padding: 12px 30px;
    }

    .qr-result-icon {
        font-size: 48px;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }

    .qr-result-title {
        font-size: 24px;
    }

    .qr-result-message {
        font-size: 16px;
    }
}

/* Verify Product Responsive */
@media (max-width: 768px) {
    .verify-hero-section {
        height: 50vh;
        min-height: 400px;
        margin-top: 28px;
    }

    .verify-hero-title {
        font-size: 32px;
    }

    .verify-hero-content {
        top: 10%;
        left: 5%;
        max-width: 90%;
    }

    .verify-section {
        padding: 60px 0 80px;
    }

    .verify-container {
        padding: 0 20px;
    }

    .verify-title {
        font-size: 36px;
    }

    .verify-subtitle {
        font-size: 18px;
    }

    .verify-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .verify-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .verify-warning {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .main-footer {
        padding: 40px 0 20px;
    }
}

/* Order Page Styles */
.order-section {
    width: 100%;
    padding: 120px 0 100px;
    background-color: #f5f0e8;
    min-height: calc(100vh - 200px);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.order-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #5c4a3a;
    text-align: center;
    margin-bottom: 60px;
}

.order-step {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-title {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #5c4a3a;
    margin-bottom: 30px;
    text-align: center;
}

/* Country Selection */
.country-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.country-btn {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #5c4a3a;
    background: #f5f0e8;
    border: 2px solid #d4c4b0;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.country-btn:hover {
    background: #e8ddd4;
    border-color: #a74e00;
    transform: translateY(-2px);
}

.country-btn.active {
    background: linear-gradient(135deg, #a74e00 0%, #8b3d00 100%);
    color: white;
    border-color: #a74e00;
}

/* Promo Code Section */
.promo-section {
    margin-bottom: 30px;
}

.promo-toggle {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.promo-btn {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #5c4a3a;
    background: #f5f0e8;
    border: 2px solid #d4c4b0;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.promo-btn:hover {
    background: #e8ddd4;
    border-color: #a74e00;
}

.promo-btn.active {
    background: linear-gradient(135deg, #a74e00 0%, #8b3d00 100%);
    color: white;
    border-color: #a74e00;
}

.promo-input-section {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.promo-input {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    padding: 12px 20px;
    border: 2px solid #d4c4b0;
    border-radius: 8px;
    flex: 1;
    color: #5c4a3a;
}

.promo-input:focus {
    outline: none;
    border-color: #a74e00;
}

.promo-apply-btn {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #a74e00 0%, #8b3d00 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.promo-apply-btn:hover {
    background: linear-gradient(135deg, #8b3d00 0%, #6b2d00 100%);
    transform: translateY(-2px);
}

.promo-message {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 6px;
}

.promo-message.success {
    background: #d4edda;
    color: #155724;
}

.promo-message.error {
    background: #f8d7da;
    color: #721c24;
}

.promo-info-message {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    color: #8b7355;
    text-align: center;
    padding: 15px;
    background: #fff4e6;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #a74e00;
}

/* Price Display */
.price-display {
    background: #f5f0e8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-item {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #5c4a3a;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-original {
    text-decoration: line-through;
    color: #8b7355;
}

.price-sale {
    font-weight: bold;
    color: #a74e00;
}

.price-discount {
    color: #28a745;
    font-weight: bold;
}

.price-total {
    font-size: 24px;
    font-weight: bold;
    padding-top: 15px;
    border-top: 2px solid #d4c4b0;
    color: #5c4a3a;
}

.price-final {
    color: #a74e00;
    font-size: 28px;
}

/* Order Form */
.order-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #5c4a3a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 16px;
    padding: 12px 20px;
    border: 2px solid #d4c4b0;
    border-radius: 8px;
    color: #5c4a3a;
    background: white;
}

.form-group select {
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #a74e00;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a74e00;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-order-btn {
    font-family: 'Caviar Dreams', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #a74e00 0%, #8b3d00 100%);
    border: none;
    padding: 18px 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 30px;
}

.submit-order-btn:hover {
    background: linear-gradient(135deg, #8b3d00 0%, #6b2d00 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 78, 0, 0.3);
}

/* Order Page Responsive */
@media (max-width: 768px) {
    .order-section {
        padding: 100px 0 80px;
    }

    .order-container {
        padding: 0 20px;
    }

    .order-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .order-step {
        padding: 30px 20px;
    }

    .step-title {
        font-size: 24px;
    }

    .country-selection {
        grid-template-columns: 1fr;
    }

    .promo-toggle {
        flex-direction: column;
    }

    .promo-input-section {
        flex-direction: column;
    }

    .promo-apply-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
