:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Ubuntu", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --arabic-font: "Tajawal", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #363f40;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #1f2f31;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #983e3e;
    --second-color: #ed1c24;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #363f40;
    /* The default color of the main navmenu links */
    --nav-hover-color: #983e3e;
    --main-color: #983e3e;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #363f40;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #099aa7;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


:root {
    --main-transition:  transform 0.3s ease;;
}








/* 🔥 Banner */
.category-banner {
    position: relative;
    background: url('../../../uploads/banner.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: #fff;
}

.category-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.category-banner .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.category-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--second-color);
}

.category-banner p {
    font-size: 18px;
    opacity: 0.9;
}


/* 📦 المنتجات */
.brand-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.brand-image {
    height: 220px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.brand-card:hover img {
    transform: scale(1.05);
}

.brand-content {
    padding: 25px;
}

.brand-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.brand-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #666;
}

.brand-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.brand-link i {
    font-size: 12px;
    transition: 0.3s;
}

.brand-link:hover i {
    transform: translateX(4px);
}
