/* Arabian Kohl Landing Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Amiri', serif;
    line-height: 1.8;
    color: #2c1810;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', 'Cairo', serif;
    font-weight: 700;
    color: #8b4513;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    direction: rtl;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: transform 0.3s ease;
}

.nav-logo .logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #8b4513;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4e4bc);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c1810 !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(244, 228, 188, 0.2) 25%,
        rgba(255, 248, 245, 0.8) 50%,
        rgba(244, 228, 188, 0.2) 75%,
        rgba(212, 175, 55, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(244, 228, 188, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: right;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-1 {
    display: block;
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 4rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #6b4e3d;
    margin-bottom: 40px;
    line-height: 1.6;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c1810;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #8b4513;
    border-color: #d4af37;
}

.cta-button.secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kohl-container {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.kohl-icon {
    font-size: 120px;
    color: #2c1810;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-decoration i {
    color: #d4af37;
    font-size: 20px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b4e3d;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, rgba(255, 248, 245, 0.8) 0%, rgba(244, 228, 188, 0.3) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-lead {
    font-size: 1.3rem;
    color: #6b4e3d;
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.7;
}

.story-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.story-icon i {
    font-size: 24px;
    color: #2c1810;
}

.story-text-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b4513;
}

.story-text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6b4e3d;
}

.heritage-symbols {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.symbol {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.symbol:hover {
    transform: translateY(-5px);
}

.symbol i {
    font-size: 32px;
    color: #d4af37;
}

.symbol span {
    font-weight: 600;
    color: #8b4513;
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.2) 0%, rgba(255, 248, 245, 0.8) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.benefit-icon i {
    font-size: 32px;
    color: #2c1810;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #8b4513;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b4e3d;
}

/* Ingredients Section */
.ingredients-section {
    background: linear-gradient(135deg, rgba(255, 248, 245, 0.9) 0%, rgba(244, 228, 188, 0.4) 100%);
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.authenticity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #2c1810;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.ingredients-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #8b4513;
}

.ingredients-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6b4e3d;
    margin-bottom: 40px;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.ingredient-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ingredient-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ingredient-icon i {
    font-size: 20px;
    color: #2c1810;
}

.ingredient-details h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #8b4513;
}

.ingredient-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b4e3d;
}

.purity-promise {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.purity-promise h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #8b4513;
}

.purity-promise ul {
    list-style: none;
}

.purity-promise li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #6b4e3d;
}

.purity-promise li i {
    color: #d4af37;
    font-size: 14px;
}

.crafting-process {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.crafting-process h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #8b4513;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2c1810;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #8b4513;
}

.step-content p {
    font-size: 0.95rem;
    color: #6b4e3d;
    line-height: 1.5;
}

/* Usage Section */
.usage-section {
    background: linear-gradient(135deg, rgba(244, 228, 188, 0.3) 0%, rgba(255, 248, 245, 0.9) 100%);
}

.usage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2c1810;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #8b4513;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b4e3d;
}

.usage-tips {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.usage-tips h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #8b4513;
    text-align: center;
}

.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tip i {
    color: #d4af37;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6b4e3d;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(244, 228, 188, 0.3) 50%,
        rgba(212, 175, 55, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(244, 228, 188, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6b4e3d;
    margin-bottom: 40px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #6b4e3d;
}

.feature i {
    color: #d4af37;
    font-size: 18px;
}

.product-showcase {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.product-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.product-image i {
    font-size: 50px;
    color: #2c1810;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #8b4513;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.currency {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    color: #8b4513;
    font-weight: 700;
}

.period {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 700;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b4e3d;
}

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

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6b4e3d;
}

.trust-item i {
    color: #d4af37;
    font-size: 14px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 100%);
    color: #f5f1eb;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Amiri', 'Cairo', serif;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #f5f1eb;
    font-style: italic;
    margin-bottom: 20px;
}

.company-address {
    margin-top: 20px;
}

.company-address h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #d4af37;
    font-weight: 600;
}

.company-address p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #f5f1eb;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #f5f1eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #f5f1eb;
    font-size: 0.9rem;
}

/* RTL Adjustments */
.story-item, .ingredient-item, .step-card {
    direction: rtl;
}

.story-icon, .ingredient-icon, .step-number {
    margin-left: 20px;
    margin-right: 0;
}

.benefit-card, .step-card {
    text-align: right;
}

.cta-content, .story-content, .ingredients-content, .usage-content {
    direction: rtl;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 3rem;
    }
    
    .story-content,
    .ingredients-content,
    .usage-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .title-line-2 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.2rem;
    }
    
    .title-line-2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .kohl-container {
        width: 200px;
        height: 200px;
    }
    
    .kohl-icon {
        font-size: 80px;
    }
    
    .benefit-card,
    .step-card,
    .product-showcase {
        padding: 20px;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 16px;
    }
}
