:root {
    --bg-color: #f9f9f9;
    --text-color: #681600;
    /* Dark Red/Brown from reference */
    --primary-color: #681310;
    /* Barista Red */
    --accent-color: #c7a17a;
    /* Gold/Beige */
    --font-heading: 'Tajawal', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    --transition: all 0.3s ease;
    --card-bg: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body) !important;
    /* Enforce Tajawal */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;

    /* iPhone Specific Fixes */
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    /* Slightly rounded, not pill */
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn:hover {
    background: #4a0d0a;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    padding-top: calc(0.5rem + env(safe-area-inset-top));
    background: #e6d9c8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--accent-color);
    min-height: calc(90px + env(safe-area-inset-top));
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
}

/* Hero */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=2100');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 100px;
    /* Offset fixed nav */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

/* Services */
.services-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.service-card {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Menu Section - Multiple Background Options */

/* Option 1: Coffee Beans (Current - Dark & Elegant) */
.menu-section {
    padding: 4rem 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?q=80&w=2061') center/cover;
    text-align: center;
    color: #fff;
}

/* Option 2: Coffee Cup with Steam (Warm & Inviting) */
.menu-section.bg-cup {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=2070') center/cover;
}

/* Option 3: Coffee Shop Interior (Cozy Atmosphere) */
.menu-section.bg-shop {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1442512595331-e89e73853f31?q=80&w=2070') center/cover;
}

/* Option 4: Espresso Machine (Professional Look) */
.menu-section.bg-espresso {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1511920170033-f8396924c348?q=80&w=2074') center/cover;
}

/* Option 5: Latte Art (Artistic & Elegant) */
.menu-section.bg-latte {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1461023058943-07fcbe16d735?q=80&w=2069') center/cover;
}

/* Option 6: Dark Wood Coffee Table (Rustic & Warm) */
.menu-section.bg-wood {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?q=80&w=2078') center/cover;
}

.menu-section .section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #c7a17a;
    margin-bottom: 1rem;
    font-style: italic;
}

.section-separator {
    width: 120px;
    height: 2px;
    background: #c7a17a;
    margin: 1.5rem auto 3rem;
}

/* Cafe Menu List */
.cafe-menu-list {
    max-width: 900px;
    margin: 3rem auto;
}

.menu-list-holder {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    direction: rtl;
    gap: 1.5rem;
}

.menu-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: #fff;
    padding: 10px;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.menu-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    min-width: 200px;
    text-align: right;
}

.menu-item-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, #c7a17a, transparent);
    position: relative;
}

.menu-item-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c7a17a;
    border-radius: 50%;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c7a17a;
    white-space: nowrap;
    min-width: 80px;
    text-align: left;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-list-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-content {
        flex-direction: column;
        width: 100%;
    }

    .menu-item-title {
        min-width: auto;
        text-align: center;
    }

    .menu-item-line {
        width: 100%;
        margin: 0.5rem 0;
    }

    .menu-item-price {
        min-width: auto;
        text-align: center;
    }
}

/* Read More Button */
.read-more-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.read-more-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(104, 19, 16, 0.3);
}

.read-more-btn:hover {
    background: #4a0d0a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(104, 19, 16, 0.4);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #c7a17a;
    color: #333;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 19, 16, 0.4);
}

/* Menu Grid Fixed to Max 2 Columns */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Enforced 2 columns */
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 2rem;
    /* Increased padding */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: var(--transition);
    gap: 2rem;
    /* Increased gap */
}

.menu-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.item-img {
    width: 160px;
    /* Increased from 120px */
    height: 160px;
    /* Increased from 120px */
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    /* Slightly thicker border */
    flex-shrink: 0;
    /* meaningful to ensure image doesn't shrink */
}

.item-info {
    flex: 1;
    text-align: right;
}

.item-name {
    font-size: 1.6rem;
    /* Increased from 1.3rem */
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.item-desc {
    font-size: 1rem;
    /* Slight bump */
    color: #777;
    margin-bottom: 1rem;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #ddd;
    /* Cafe ticket style */
    padding-top: 1rem;
}

.item-price {
    font-size: 1.4rem;
    /* Increased from 1.2rem */
    font-weight: 800;
    color: var(--primary-color);
}

.add-btn {
    background: var(--accent-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-btn:hover {
    background: var(--primary-color);
}

/* Features Footer */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 5%;
    background: #f4f4f4;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: #fff;
    width: 100%;
    max-width: 400px;
    height: 100%;
    padding: 2rem;
    padding-top: calc(2rem + env(safe-area-inset-top));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 2px solid var(--primary-color);
}

.whatsapp-btn {
    background: #25d366;
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .item-info {
        text-align: center;
    }

    .item-footer {
        justify-content: center;
        gap: 1rem;
    }
}

/* Flowers Section */
.flowers-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.flower-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 10px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.flower-panel {
    display: none;
    animation: fadeIn 0.5s;
}

.flower-panel.active {
    display: block;
}

.flower-builder {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem;
    background: #fafafa;
    border-radius: 20px;
    border: 1px solid #eee;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.flower-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.flower-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.flower-count-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    border: 3px solid #fff;
}

.flower-controls {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.flower-controls h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.range-container {
    margin-bottom: 2rem;
}

.flower-slider {
    width: 100%;
    height: 10px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 5px;
    direction: ltr;
    /* Ensure slider works intuitively */
}

.flower-slider:hover {
    opacity: 1;
}

.flower-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
}

.range-value {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 1rem;
}

.flower-price-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px dashed var(--accent-color);
    margin-bottom: 2rem;
}

.flower-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.flower-option-card {
    cursor: pointer;
    position: relative;
}

.flower-option-card input {
    display: none;
}

.option-content {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    transition: var(--transition);
}

.flower-option-card input:checked+.option-content {
    border-color: var(--primary-color);
    background: #fff0f0;
}

.option-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.qty-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-input-group button {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.qty-input-group input {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

@media (max-width: 768px) {
    .flower-builder {
        flex-direction: column;
    }

    .flower-controls {
        text-align: center;
    }
}

/* Services Orbit Layout */
.services-orbit-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
}

.orbit-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 2;
}

/* For RTL Site (assuming Direction: RTL on Body or HTML) */
/* The column visually on the RIGHT (Start) */
.right-col {
    text-align: left;
    /* Text aligns towards image */
    align-items: flex-end;
    /* Align box towards image */
}

/* The column visually on the LEFT (End) */
.left-col {
    text-align: right;
    /* Text aligns towards image */
    align-items: flex-start;
    /* Align box towards image */
}

.orbit-center {
    flex: 0 0 150px;
    text-align: center;
    z-index: 1;
    margin-top: 3rem;
}

.center-cup-img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    animation: floatCup 6s ease-in-out infinite;
}

@keyframes floatCup {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.orbit-item {
    max-width: 350px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.orbit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.orbit-item h3 {
    color: var(--primary-color);
    margin: 10px 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.orbit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Fixed Icons */
.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Adjust Icon alignment within column context */
.right-col .icon-box {
    margin-left: 0;
    margin-right: auto;
    /* Push to Left */
}

.left-col .icon-box {
    margin-left: auto;
    margin-right: 0;
    /* Push to Right */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-orbit-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .orbit-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .orbit-center {
        order: -1;
        margin-bottom: 2rem;
    }

    .center-cup-img {
        max-height: 250px;
    }

    .icon-box {
        margin: 0 auto !important;
    }

}

.option-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.qty-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-input-group button {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.qty-input-group input {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

@media (max-width: 768px) {
    .flower-builder {
        flex-direction: column;
    }

    .flower-controls {
        text-align: center;
    }
}

/* Services Orbit Layout */
.services-orbit-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
}

.orbit-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 2;
}

/* For RTL Site (assuming Direction: RTL on Body or HTML) */
/* The column visually on the RIGHT (Start) */
.right-col {
    text-align: left;
    /* Text aligns towards image */
    align-items: flex-end;
    /* Align box towards image */
}

/* The column visually on the LEFT (End) */
.left-col {
    text-align: right;
    /* Text aligns towards image */
    align-items: flex-start;
    /* Align box towards image */
}

.orbit-center {
    flex: 0 0 320px;
    text-align: center;
    z-index: 1;
}

.center-cup-img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    animation: floatCup 6s ease-in-out infinite;
}

@keyframes floatCup {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.orbit-item {
    max-width: 350px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.orbit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.orbit-item h3 {
    color: var(--primary-color);
    margin: 10px 0;
    font-size: 1.4rem;
    font-weight: 800;
}

.orbit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Fixed Icons */
.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Adjust Icon alignment within column context */
.right-col .icon-box {
    margin-left: 0;
    margin-right: auto;
    /* Push to Left */
}

.left-col .icon-box {
    margin-left: auto;
    margin-right: 0;
    /* Push to Right */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .services-orbit-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .orbit-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .orbit-center {
        order: -1;
        margin-bottom: 2rem;
    }

    .center-cup-img {
        max-height: 250px;
    }

    .icon-box {
        margin: 0 auto !important;
    }

    .right-col,
    .left-col {
        text-align: center;
        align-items: center;
    }
}

/* ============================================ */
/* FLOWERS SECTION - CLEAN STYLES (iPhone Optimized) */
/* ============================================ */

.flower-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 50px;
    width: 95%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.flower-tabs::-webkit-scrollbar {
    display: none;
}

.flower-tab {
    padding: 0.7rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
    min-width: fit-content;
    touch-action: manipulation;
}

.flower-tab:hover,
.flower-tab:active {
    background: rgba(255, 255, 255, 0.4);
}

.flower-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(92, 64, 51, 0.3);
}

.flower-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flower-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flower-block {
    margin-bottom: 1.5rem;
}

.flower-type-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    text-align: center;
    padding: 0 1rem;
    line-height: 1.4;
}

.flower-container {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    align-items: center;
}

.flower-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flower-image-side img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: opacity 0.3s, transform 0.3s;
    -webkit-user-drag: none;
}

.flower-image-side img:hover {
    transform: scale(1.02);
}

.flower-controls-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.color-picker h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.color-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.color-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
}

.color-btn:hover,
.color-btn:active {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.color-btn.active {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(92, 64, 51, 0.4);
}

.color-btn.red {
    background-color: #D32F2F;
}

.color-btn.blue {
    background-color: #1976D2;
}

.color-btn.white {
    background-color: #FFFFFF;
    border-color: #999;
}

.color-btn.yellow {
    background-color: #FBC02D;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.8rem;
    border-radius: 12px;
    width: fit-content;
    margin: 0 auto;
}

.qty-btn-minus,
.qty-btn-plus {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(92, 64, 51, 0.2);
    touch-action: manipulation;
}

.qty-btn-minus:hover,
.qty-btn-plus:hover,
.qty-btn-minus:active,
.qty-btn-plus:active {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.qty-value {
    font-size: 1.6rem;
    font-weight: bold;
    min-width: 36px;
    text-align: center;
    color: var(--text-color);
}

.price-display {
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.7rem;
    background: rgba(241, 241, 241, 0.6);
    border-radius: 10px;
    text-align: center;
    line-height: 1.4;
}

.price-display strong {
    color: var(--primary-color);
    font-size: 1.3rem;
    display: block;
    margin-top: 0.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .flower-container {
        flex-direction: column;
        text-align: center;
    }

    .flower-image-side img {
        max-width: 300px;
        height: 300px;
    }

    .color-buttons {
        justify-content: center;
    }

    .quantity-selector {
        margin: 0 auto;
    }

    .flower-controls-side {
        align-items: center;
    }
}

/* Service Icons - Force White Color */
.service-icon {
    color: #fff !important;
}


/* Emoji Icon Styling */
.emoji-icon {
    font-size: 2rem;
    filter: grayscale(100%) brightness(200%);
    display: inline-block;
}

/* Icon Symbol Styling - Monochrome White Icons */
.icon-symbol {
    font-size: 2rem;
    color: #fff !important;
    filter: grayscale(100%) brightness(300%) contrast(100%);
    display: inline-block;
    font-style: normal;
}

/* Service Header - Inline Icon and Title Layout */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
    flex-direction: row-reverse;
    text-align: right;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    filter: grayscale(100%) brightness(0%) contrast(100%);
    flex-shrink: 0;
}

.service-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Update orbit-item to remove old styling */
.orbit-item {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 1rem 0 !important;
    direction: rtl !important;
    text-align: right !important;
}

.orbit-item:hover {
    transform: none !important;
}

.orbit-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Icon Images - Override previous styles */
.service-icon {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    filter: brightness(0) saturate(100%) invert(28%) sepia(24%) saturate(1234%) hue-rotate(357deg) brightness(92%) contrast(88%) !important;
    flex-shrink: 0 !important;
    font-size: inherit !important;
}

/* Contact Section */
.contact-section {
    padding: 4rem 5%;
    background: #f8f8f8;
    text-align: center;
}

.contact-section .section-title {
    color: var(--text-color);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.contact-item h3 {
    color: var(--text-color);
    margin: 1rem 0;
    font-size: 1.2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
    direction: ltr;
}

.contact-link i {
    font-size: 1.8rem;
    color: inherit;
}

.contact-link:hover {
    color: #4a0d0a;
}

.contact-link:hover i {
    color: inherit;
}

.phone-link {
    color: #E1306C;
}

.phone-link:hover {
    color: #C13584;
}

.instagram-link {
    color: #E1306C;
}

.instagram-link i {
    color: #E1306C;
}

.instagram-link:hover {
    color: #C13584;
}

.instagram-link:hover i {
    color: #C13584;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 5%;
    text-align: center;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    direction: ltr;
    text-align: left;
}

.copyright {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #ccc;
}

.developer-credit {
    margin: 0;
    font-size: 1.2rem;
    color: #999;
    direction: ltr;
}

.dev-link {
    color: #E1306C;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.dev-link:hover {
    color: #C13584;
}

.dev-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* --- Comprehensive Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .services-orbit-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .orbit-column {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .orbit-center {
        order: -1;
        margin-bottom: 2rem;
    }

    .center-cup-img {
        max-height: 250px;
    }

    .icon-box {
        margin: 0 auto !important;
    }

    .flower-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .flower-image-side img {
        max-width: 240px;
        max-height: 240px;
        object-fit: contain;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #e6d9c8;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.4rem;
        margin: 1rem 0;
        width: 80%;
        text-align: center;
        padding: 0.5rem;
        border-bottom: 1px solid rgba(104, 22, 0, 0.1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        height: 65vh;
        margin-top: 90px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo img {
        height: 45px !important;
    }

    .contact-info {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        min-width: 100%;
        width: 100%;
    }

    .footer .container {
        text-align: center;
        direction: rtl;
    }

    .developer-credit,
    .copyright {
        direction: rtl;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .dev-link {
        direction: ltr;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .item-info {
        text-align: center;
    }

    .item-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Service Icons and Section Styling */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-color);
    flex-direction: row-reverse;
    text-align: right;
}

.service-icon {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
    filter: brightness(0) saturate(100%) invert(28%) sepia(24%) saturate(1234%) hue-rotate(357deg) brightness(92%) contrast(88%) !important;
    flex-shrink: 0 !important;
}

.service-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.orbit-item {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 1rem 0 !important;
    direction: rtl !important;
    text-align: right !important;
}

.orbit-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    .read-more-btn {
        width: 90%;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-link {
        font-size: 1.2rem;
    }

    .item-name {
        font-size: 1.4rem;
    }

    .item-img {
        width: 140px;
        height: 140px;
    }

    .cart-content {
        max-width: 100%;
    }
}