/* Header Bar */
.headerbar {
    background: linear-gradient(to right, rgba(11, 217, 139, 1) 60%, rgba(11, 217, 139, 0.5) 100%), 
                url(/shopping.mania/images/fon-colored-375-250.png) no-repeat center/cover;
    padding: 10px 20px;
    color: white;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Flex layout for header */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left section (logo + site titles) */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
}

.site-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-title {
    font-size: 20px;
    margin: 0;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-title a:hover {
    text-decoration: underline;
}

/* Right side social icons */
.header-soc {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.header-soc a img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.header-soc a img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-soc {
        margin-top: 15px;
        justify-content: flex-start;
    }

    .site-title {
        font-size: 18px;
    }

    .logo-img {
        width: 40px;
    }
}






/* Header & Logo */
.headerbar {
    background: linear-gradient(to right, rgba(11, 217, 139, 1) 60%, rgba(11, 217, 139, .5) 100%), url(/shopping.mania/images/fon-colored-375-250.png);
    padding: 10px;
    color: white;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.headerbar .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#site-description {
    display: flex;
    align-items: center;
    gap: 15px;
}

#logo img {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

#logo img:hover {
    transform: scale(1.05);
}

#site-name {
    margin: 0;
}

#site-name a {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: text-decoration 0.3s ease;
}

#site-name a:hover {
    text-decoration: underline;
}

.social-group {
    text-align: right;
}

.group-title {
    font-size: 14px;
    margin: 0 0 6px 0;
    color: #f0f0f0;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .headerbar .inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #site-name a {
        font-size: 1.4em;
    }

    .social-group {
        text-align: left;
        margin-top: 15px;
    }

    .social-icons {
        justify-content: flex-start;
    }
}





/* Breadcrumbs */

/* Breadcrumbs */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 217, 139, 0.1);
    backdrop-filter: blur(10px);
}

#nav-breadcrumbs {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 8px;
    align-items: center;
}

#nav-breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

#nav-breadcrumbs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95em;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    color: orange;
    transition: background-color 0.2s ease;
}

#nav-breadcrumbs a:hover {
    background-color: rgba(11, 217, 139, 0.1);
}

#nav-breadcrumbs img {
    height: 24px;
    width: auto;
}


a {
    color: orange;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* subtle shade */
}

a:hover {
    color: darkorange; /* lighter orange shade on hover */
    text-decoration: underline;
}

