
    :root {
        --primary: #ce1212;
        --primary-light: #e61414;
        --primary-dark: #a50e0e;
        --secondary: #212529;
        --accent: #ffc107;
        --light: #f8f9fa;
        --dark: #1a1a1a;
        --gray: #6c757d;
        --light-gray: #e9ecef;
        --border-radius: 12px;
        --box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        color: #444;
        line-height: 1.6;
        background-color: #fff;
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--secondary);
    }
    
    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }
    
    /* ======================
       HEADER & NAVIGATION
       ====================== */
    #header {
        background: rgba(255, 255, 255, 0.98);
        padding: 15px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    #header.scrolled {
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .logo {
        font-family: 'Dancing Script', cursive;
        font-size: 32px;
        font-weight: 700;
        color: var(--primary);
        margin: 0;
    }
    
    .logo span {
        color: var(--secondary);
    }
    
    .navbar {
        padding: 0;
    }
    
    .navbar-nav {
        align-items: center;
    }
    
    .nav-item {
        margin: 0 5px;
    }
    
    .nav-link {
        font-weight: 500;
        color: var(--secondary);
        padding: 8px 15px !important;
        border-radius: 4px;
        transition: var(--transition);
        position: relative;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }
    
    .nav-link:hover:after,
    .nav-link.active:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        height: 2px;
        background: var(--primary);
    }
    
    /* Fix for profile dropdown - Click instead of hover */
    .nav-user-dropdown {
        position: relative;
    }
    
    .nav-user-dropdown .dropdown-menu {
        border: none;
        box-shadow: var(--box-shadow);
        border-radius: var(--border-radius);
        padding: 0;
        margin-top: 15px;
        min-width: 220px;
        display: none;
        position: absolute;
        right: 0;
        background: white;
        z-index: 1000;
    }
    
    /* Add this class to show dropdown */
    .nav-user-dropdown .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-weight: 500;
        transition: var(--transition);
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background-color: rgba(206, 18, 18, 0.1);
        color: var(--primary);
        padding-left: 25px;
    }
    
    .nav-user-info {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        padding: 20px;
        color: white;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .nav-user-name {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: white;
    }
    
    .nav-user-info .status {
        font-size: 0.85rem;
        opacity: 0.9;
    }
    
    .cart-icon {
        position: relative;
        font-size: 1.2rem;
    }
    
    .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--primary);
        color: white;
        font-size: 11px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .user-profile {
        display: flex;
        align-items: center;
        padding: 5px 15px;
        border-radius: 50px;
        background: rgba(206, 18, 18, 0.1);
        margin-left: 10px;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .user-profile:hover {
        background: rgba(206, 18, 18, 0.15);
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
        border: 2px solid var(--primary);
    }
    
    .user-name {
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    /* ======================
       BREADCRUMBS SECTION
       ====================== */
    .breadcrumbs {
        padding: 140px 0 60px;
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                    url('../images/beriyth.png');
        background-size: cover;
        background-position: center center;
        color: white;
        text-align: center;
    }
    
    .breadcrumbs h2 {
        font-size: 3.5rem;
        color: white;
        margin-bottom: 15px;
    }
    
    .breadcrumbs p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto 30px;
    }
    
    .breadcrumb-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    .breadcrumb-nav a {
        color: var(--accent);
        opacity: 0.8;
    }
    
    .breadcrumb-nav a:hover {
        opacity: 1;
        color: white;
    }
    
    .breadcrumb-nav .separator {
        opacity: 0.5;
    }
  /* ======================
ABOUT CONTENT SECTION - WIDER
====================== */
.about-section {
padding: 80px 0;
background: #f8f9fa;
}

.about-container {
max-width: 1200px; /* Increased from 1000px */
margin: 0 auto;
padding: 0 40px; /* Increased padding */
}

.about-header {
text-align: center;
margin-bottom: 60px;
}

.about-header h2 {
font-size: 3rem; /* Increased from 2.8rem */
position: relative;
padding-bottom: 20px;
margin-bottom: 20px;
}

.about-header h2:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 120px; /* Increased from 100px */
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--accent));
border-radius: 2px;
}

.about-content {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
padding: 60px 50px; /* Increased padding */
position: relative;
overflow: hidden;
margin: 0 auto;
}

.about-content:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: linear-gradient(180deg, var(--primary), var(--accent));
}

.about-text {
font-size: 1.15rem; /* Slightly larger text */
line-height: 1.9; /* Increased line height */
color: var(--gray);
max-width: 100%; /* Full width */
}

.about-text p {
margin-bottom: 30px; /* Increased spacing */
position: relative;
padding-left: 25px; /* Increased padding */
font-size: 1.15rem; /* Slightly larger */
}

.about-text p:before {
content: '🎂';
position: absolute;
left: -25px; /* Adjusted position */
top: 5px;
font-size: 1.2rem;
}

.mission-vision {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Increased min width */
gap: 50px; /* Increased gap */
margin-top: 80px; /* Increased margin */
}

.mission-card, .vision-card {
background: white;
border-radius: var(--border-radius);
padding: 50px 40px; /* Increased padding */
box-shadow: var(--box-shadow);
text-align: center;
transition: var(--transition);
border-top: 5px solid transparent; /* Thicker border */
}

.mission-card:hover, .vision-card:hover {
transform: translateY(-12px); /* Stronger hover effect */
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-card {
border-top-color: var(--primary);
}

.vision-card {
border-top-color: var(--accent);
}

.mission-icon, .vision-icon {
font-size: 3.5rem; /* Larger icons */
margin-bottom: 30px;
color: var(--primary);
}

.vision-icon {
color: var(--accent);
}

.mission-card h3, .vision-card h3 {
font-size: 2rem; /* Larger headings */
margin-bottom: 25px;
}

/* ======================
CATEGORIES SECTION - WIDER
====================== */
.categories-section {
padding: 80px 40px; /* Increased side padding */
background: #f8f9fa;
}

.categories-section .section-title h2 {
font-size: 3rem; /* Increased from 2.8rem */
}

.categories-section .container {
max-width: 1400px; /* Much wider container */
margin: 0 auto;
}

.category-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); /* Stronger shadow */
transition: var(--transition);
height: 100%;
position: relative;
margin-bottom: 40px; /* Increased margin */
}

.category-card:hover {
transform: translateY(-20px); /* Stronger hover */
box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.category-image-container {
position: relative;
overflow: hidden;
height: 350px; /* Taller images */
}

.category-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}

.category-card:hover .category-image {
transform: scale(1.12); /* Stronger zoom */
}

.category-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)); /* Darker overlay */
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
opacity: 1;
}

.btn-view-category {
background: white;
color: var(--primary);
padding: 18px 35px; /* Larger button */
border-radius: 50px;
font-weight: 600;
font-size: 1.2rem; /* Larger text */
transform: translateY(25px);
transition: all 0.4s ease;
display: inline-flex;
align-items: center;
}

.category-card:hover .btn-view-category {
transform: translateY(0);
}

.btn-view-category:hover {
background: var(--primary);
color: white;
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(206, 18, 18, 0.3);
}

.category-content {
padding: 35px 30px; /* Increased padding */
text-align: center;
}

.category-title {
font-size: 1.8rem; /* Larger title */
margin-bottom: 20px;
color: var(--secondary);
position: relative;
padding-bottom: 20px;
}

.category-title:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px; /* Wider underline */
height: 4px; /* Thicker line */
background: var(--primary);
}
/* ======================
   CTA SECTION
   ====================== */
   .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9CD64 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: #F9CD64;
    border: 2px solid white;
    padding: 15px 45px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta:hover {
    background: transparent;
    color: white;
}



/* ======================
FOOTER - WIDER
====================== */
.footer {
background: var(--secondary);
color: white;
padding: 100px 0 40px; /* Increased padding */
}

.footer .container {
max-width: 1400px; /* Wider footer */
margin: 0 auto;
}

.footer-logo {
font-family: 'Dancing Script', cursive;
font-size: 3rem; /* Larger logo */
color: white;
margin-bottom: 25px;
display: block;
}

.footer-description {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 30px;
font-size: 1.15rem; /* Larger text */
line-height: 1.9;
max-width: 90%; /* Wider text block */
}

.footer-heading {
color: white;
font-size: 1.5rem; /* Larger headings */
margin-bottom: 30px;
position: relative;
padding-bottom: 15px;
}

.footer-heading:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px; /* Wider underline */
height: 3px;
background: var(--primary);
}

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

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

.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: var(--transition);
display: flex;
align-items: center;
gap: 12px;
font-size: 1.1rem; /* Larger text */
}

.footer-links a:hover {
color: var(--primary);
padding-left: 10px; /* More movement */
}

.footer-links a i {
width: 25px;
font-size: 1.2rem; /* Larger icons */
}

.social-links {
display: flex;
gap: 20px;
margin-top: 25px;
}

.social-link {
width: 50px; /* Larger social icons */
height: 50px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3rem; /* Larger icons */
transition: var(--transition);
}

.social-link:hover {
background: var(--primary);
transform: translateY(-5px);
}

.copyright {
text-align: center;
padding-top: 50px;
margin-top: 80px;
border-top: 2px solid rgba(255, 255, 255, 0.15); /* Thicker border */
color: rgba(255, 255, 255, 0.6);
font-size: 1.1rem; /* Larger text */
}

/* ======================
RESPONSIVE ADJUSTMENTS
====================== */
@media (max-width: 1200px) {
.about-container {
    max-width: 1100px;
    padding: 0 30px;
}

.categories-section .container {
    max-width: 1200px;
}

.mission-vision {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.category-image-container {
    height: 320px;
}
}

@media (max-width: 992px) {
.about-container {
    max-width: 100%;
    padding: 0 20px;
}

.categories-section {
    padding: 80px 20px;
}

.mission-vision {
    grid-template-columns: 1fr;
    gap: 30px;
}

.category-image-container {
    height: 280px;
}
}

@media (max-width: 768px) {
.about-content {
    padding: 40px 30px;
}

.categories-section {
    padding: 60px 15px;
}

.category-image-container {
    height: 250px;
}

.category-content {
    padding: 25px 20px;
}
}

@media (max-width: 576px) {
.about-content {
    padding: 30px 20px;
}

.mission-card, .vision-card {
    padding: 40px 25px;
}

.category-image-container {
    height: 220px;
}
}
