.tag {
    display: inline-block;
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Color Palette */
:root {
    --primary-color: #2e7d32; /* Green */
    --accent-color: #c62828;  /* Red */
    --background-color: #f9f9f9;
}

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

/* Buttons */
.button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--accent-color);
}

/* Product Cards */
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

/* Override old header styles */
header {
    height: 80px !important;
    max-height: 80px !important;
    overflow: hidden;
}

.modern-header {
    height: 80px !important;
    max-height: 80px !important;
    padding: 10px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Simple Mobile Menu */
.mobile-toggle {
    display: none;
    background: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    border-radius: 3px;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
    margin-bottom: 3px;
    border-radius: 1px;
}

.mobile-toggle span:last-child {
    margin-bottom: 0;
}

.mobile-toggle:hover span {
    background-color: #2e7d32;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .navbar-collapse {
        display: none !important;
    }
}

/* Palestinian-themed Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #3b82f6 50%, #60a5fa 75%, #93c5fd 100%);
    position: relative;
    /*padding: 80px 0;*/
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Palestinian Flag Accent - Separate element */
.page-hero-flag-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000 0%, #000000 33.33%, #ffffff 33.33%, #ffffff 66.66%, #007a3d 66.66%, #007a3d 100%);
    z-index: 2;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="palestine" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%23ffffff" opacity="0.05"/><path d="M0 0 L20 20 M20 0 L0 20" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23palestine)"/></svg>');
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.palestinian-accent {
    font-size: 2.5rem;
    margin-left: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .palestinian-accent {
        font-size: 2rem;
        margin-left: 10px;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }

    .palestinian-accent {
        font-size: 1.5rem;
        margin-left: 8px;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }
}



