/* 
   Styles for Qutof Siwa Elements
   RTL Supportive, Warm Oasis desert theme palette
   Suffix: a6e2bd8e
*/

:root {
    --siwa-gold: #c5a880;
    --siwa-dark: #2a251e;
    --siwa-sand: #fbf7f2;
    --siwa-green: #3c4a3e;
    --siwa-contrast-text: #ffffff;
    --siwa-gray: #7a756f;
}

/* 1. Hero Widget Styling */
.siwa-hero-section-a6e2bd8e {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    direction: rtl;
    position: relative;
    box-sizing: border-box;
}

.siwa-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    z-index: 5;
}

.siwa-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.siwa-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.siwa-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 400;
}

.siwa-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.siwa-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.siwa-btn-primary {
    background-color: var(--siwa-gold);
    color: var(--siwa-dark);
}

.siwa-btn-primary:hover {
    background-color: #b59870;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.siwa-btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.siwa-btn-secondary:hover {
    background: #ffffff;
    color: var(--siwa-dark);
}

/* Instant Search Box in Hero */
.siwa-hero-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.siwa-hero-search-form {
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 4px;
}

.siwa-hero-search-input {
    flex: 1;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    text-align: right;
    color: #333333;
}

.siwa-hero-search-btn {
    background: var(--siwa-green);
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.siwa-hero-search-btn:hover {
    background-color: #2c382e;
}

/* 2. Why Mud and Clay Widget */
.siwa-why-mud-section-a6e2bd8e {
    background-color: var(--siwa-sand);
    padding: 80px 20px;
    direction: rtl;
}

.siwa-why-container {
    max-width: 1140px;
    margin: 0 auto;
}

.siwa-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.siwa-why-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--siwa-dark);
    margin-bottom: 15px;
}

.siwa-why-desc {
    font-size: 1.1rem;
    color: var(--siwa-gray);
    line-height: 1.7;
}

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

.siwa-why-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-top: 4px solid var(--siwa-gold);
    transition: transform 0.3s ease;
    text-align: center;
}

.siwa-why-card:hover {
    transform: translateY(-5px);
}

.siwa-why-card-icon {
    font-size: 3rem;
    color: var(--siwa-green);
    margin-bottom: 20px;
}

.siwa-why-card-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--siwa-green);
}

.siwa-why-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--siwa-dark);
    margin-bottom: 15px;
}

.siwa-why-card-desc {
    font-size: 1rem;
    color: var(--siwa-gray);
    line-height: 1.6;
}

/* 3. Siwa Story Widget */
.siwa-story-section-a6e2bd8e {
    padding: 80px 20px;
    background-color: #ffffff;
    direction: rtl;
}

.siwa-story-container {
    max-width: 1140px;
    margin: 0 auto;
}

.siwa-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.siwa-story-text-column {
    padding-left: 20px;
}

.siwa-story-tag {
    display: inline-block;
    background: rgba(197, 168, 128, 0.15);
    color: var(--siwa-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.siwa-story-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--siwa-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.siwa-story-wysiwyg {
    font-size: 1.1rem;
    color: var(--siwa-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.siwa-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--siwa-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--siwa-gold);
    padding-bottom: 4px;
    transition: gap 0.3s ease;
}

.siwa-story-btn:hover {
    gap: 12px;
}

.siwa-story-img-column {
    position: relative;
}

.siwa-story-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.siwa-story-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.siwa-story-img-wrapper:hover img {
    transform: scale(1.03);
}

/* 4. Customer Reviews Widget */
.siwa-reviews-section-a6e2bd8e {
    background-color: var(--siwa-sand);
    padding: 80px 20px;
    direction: rtl;
}

.siwa-reviews-container {
    max-width: 1140px;
    margin: 0 auto;
}

.siwa-reviews-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--siwa-dark);
    margin-bottom: 50px;
}

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

.siwa-review-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.siwa-review-stars {
    color: #f1c40f;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.siwa-review-comment {
    font-size: 1.05rem;
    color: var(--siwa-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.siwa-reviewer-info {
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

.siwa-reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--siwa-dark);
    margin-bottom: 4px;
}

.siwa-reviewer-role {
    font-size: 0.9rem;
    color: var(--siwa-gold);
}

/* 5. Custom Footer Widget */
.siwa-footer-section-a6e2bd8e {
    background-color: var(--siwa-dark);
    color: #ffffff;
    padding: 80px 20px 30px 20px;
    direction: rtl;
}

.siwa-footer-container {
    max-width: 1140px;
    margin: 0 auto;
}

.siwa-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.siwa-footer-col-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--siwa-gold);
    margin-bottom: 20px;
}

.siwa-footer-about {
    line-height: 1.7;
    color: #d1d1d1;
    font-size: 0.95rem;
}

.siwa-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.siwa-footer-links li {
    margin-bottom: 12px;
}

.siwa-footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.siwa-footer-links a:hover {
    color: var(--siwa-gold);
}

.siwa-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.siwa-footer-contact li {
    color: #d1d1d1;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.siwa-footer-contact i {
    color: var(--siwa-gold);
    font-size: 1.1rem;
}

.siwa-footer-bottom {
    text-align: center;
}

.siwa-footer-copy {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0;
}

/* Search suggestions dynamic panel style */
.siwa-search-results-preview {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 99;
    margin-top: 10px;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    text-align: right;
}

.siwa-search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid #eeeeee;
    text-decoration: none;
    color: var(--siwa-dark);
    transition: background 0.3s ease;
}

.siwa-search-result-item:hover {
    background: var(--siwa-sand);
}

.siwa-search-result-item:last-child {
    border-bottom: none;
}

.siwa-search-result-thumb {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
}

.siwa-search-result-info {
    flex: 1;
}

.siwa-search-result-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.siwa-search-result-price {
    color: var(--siwa-gold);
    font-size: 0.85rem;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .siwa-hero-title {
        font-size: 2.1rem;
    }
    .siwa-hero-subtitle {
        font-size: 1.05rem;
    }
    .siwa-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .siwa-story-text-column {
        padding-left: 0;
    }
}
