

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    max-width: 100%;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.top-bar {
    background-color: var(--dark-color);
    color: white;
    padding: 5px 0;
    font-size: 0.9rem;
}

.hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: var(--muted-color-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Стилове за кошницата */



/* Социална лента от дясната страна */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px 0 0 10px;
}

a {
    text-decoration: none !important;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s ease;
    width: 45px;
    overflow: hidden;
    position: relative;
    margin: 0 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    width: 140px;
    transform: translateX(-5px);
}

.social-icon span {
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: opacity 0.2s ease 0.1s;
    font-weight: 500;
    white-space: nowrap;
}

.social-icon:hover span {
    opacity: 1;
}

.social-icon i {
    font-size: 20px;
    transition: transform 0.3s ease;
    z-index: 2;
    min-width: 25px;
    text-align: center;
}

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

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.tiktok {
    background-color: #000000;
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.linkedin {
    background-color: #0077B5;
}

/* Адаптивност за социалните икони */
@media (max-width: 768px) {
    .social-sidebar {
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        transform: none;
        background-color: rgba(0,0,0,0.8);
        padding: 10px;
        border-radius: 0;
    }

    .social-icon {
        border-radius: 50%;
        width: 45px;
        height: 45px;
        justify-content: center;
        padding: 0;
        margin: 0 5px;
    }

    .social-icon:hover {
        width: 45px;
        height: 45px;
        transform: none;
    }

    .social-icon span {
        display: none;
    }

    .social-icon i {
        font-size: 24px;
    }
}
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--dark-color-rgb), 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.cookie-text {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted-color-light);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
    color: var(--link-color-hover);
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

.class-mobile-close {
    display: none;
}
.action-app-button {
    margin-right: 0.5rem;
}
.navbar-nav .dropdown-menu .dropdown-submenu {
    position: relative;
}

.navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-toggle::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -6px;
    }
}
/* Нови стилове за мобилно меню отляво */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-menu {
        position: static;
        float: none;
        border: none;
        box-shadow: none;
        background-color: rgba(0,0,0,0.05);
        margin-left: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .navbar-nav .dropdown-menu .dropdown-submenu > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .class-mobile-close {
        display: block;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 80%;
        max-width: 300px;
        padding: 0rem 1rem;
        background-color: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .navbar-nav {
        margin-top: 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        border: none;
        box-shadow: none;
        background-color: var(--light-color);
        margin-bottom: 1rem;
    }

    .navbar-toggler {
        z-index: 100;
    }

    .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 1040;
        display: none;
    }

    .navbar-backdrop.show {
        display: block;
    }
    .profile-button{
        margin-top: 1rem;
        width:100%
    }
    .action-app-button{
        margin-top: 1rem;
        width:100%
    }
}






.content-section-header {
    background: var(--gradient-header);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}










.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}









@media (max-width: 991.98px) {
    .content-section-header {
        padding: 20px 0;
    }
}



.terms-content {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    padding: 40px;
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.section-title:first-child {
    margin-top: 0;
}

.product-list {
    list-style-type: none;
    padding-left: 0;
}

.product-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.highlight-box {
    background-color: var(--link-color-soft);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-content {
        padding: 20px;
        margin: 0 10px 40px;
    }

    .terms-header {
        padding: 60px 0 40px;
    }
}

.contact-info-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.contact-icon.location {
    background: var(--icon-gradient-location);
}

.contact-icon.phone {
    background: var(--icon-gradient-phone);
}

.contact-icon.email {
    background: var(--icon-gradient-email);
}

.contact-icon.hours {
    background: var(--icon-gradient-hours);
}

.contact-form {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 8px 10px;
    border: 1px solid var(--border-color-soft);
    transition: all 0.3s ease;
}

/* focus color е дефиниран веднъж в theme.css (var(--primary-color) чрез
   color-mix) — тук нарочно не дублираме правилото, за да не се разминава
   пак с --primary-color, ако theme.css се смени за нова тема. */

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.is-invalid {
    border-color: var(--danger-color);
}

.invalid-feedback {
    display: none;
    color: var(--danger-color);
    font-size: 0.875em;
    margin-top: 5px;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
}

#contactMap {
    height: 100%;
    width: 100%;
}

.success-message {
    display: none;
    background: var(--gradient-success);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.contact-section {
    margin-bottom: 60px;
}
/* Blog Section Styles */
.blog-section {
    margin-top: 40px;
}

.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

.article-image-container {
    height: 100%;
    overflow: hidden;
    border-radius: 0.375rem 0 0 0.375rem;
}

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

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-meta .badge {
    font-size: 0.7rem;
}

.blog-sidebar .card {
    border-radius: 10px;
}

.blog-sidebar .card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.blog-sidebar .list-group-item {
    border: none;
    padding: 0.75rem 1.25rem;
    transition: background-color 0.3s;
}

.blog-sidebar .list-group-item:hover {
    background-color: var(--link-color-soft);
}

.blog-sidebar .list-group-item a {
    color: var(--dark-color);
    transition: color 0.3s;
}

.blog-sidebar .list-group-item:hover a {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .article-image-container {
        border-radius: 0.375rem 0.375rem 0 0;
        height: 200px;
    }

    .blog-sidebar {
        margin-top: 2rem;
    }
}


/* Article Page Styles */
.article-header {

    background: var(--gradient-header);
    color: white;
    padding: 30px 0 30px;
}

.article-cover {
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lift);
}

.article-meta {
    color: rgba(255,255,255,0.9);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: var(--dark-color);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.article-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content blockquote {
    border-left: 4px solid var(--link-color);
    background: var(--light-color);
}

.article-tags .btn {
    border-radius: 20px;
}

.article-actions {
    padding: 1.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-header {
        padding: 60px 0 30px;
    }

    .article-cover {
        height: 250px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-meta > div {
        margin-bottom: 0.5rem;
    }

    .article-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}


















.navbar-toggler:focus{
    box-shadow: none;
}




.nav-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 1rem 2rem;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}








/* Fullscreen Gallery */








/* Responsive */
@media (max-width: 768px) {
    .product-gallery-main img {
        height: 300px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-add-to-cart,
    .btn-checkout {
        flex: none;
        width: 100%;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Бюлетин модул — свързан pill (инпут + бутон), вместо голи Bootstrap
   .form-control + .btn една до друга (без това бутонният текст пренася на
   няколко реда, а инпутът и бутонът не изглеждат като едно цяло). */
.newsletter-title {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.newsletter-subtitle {
    opacity: 0.85;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.newsletter-form {
    max-width: 420px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.newsletter-form .newsletter-email {
    flex: 1 1 auto;
    min-width: 0;
    background: white;
    border: none;
    border-radius: 0;
    padding: 0.7rem 1.25rem;
    box-shadow: none;
}

.newsletter-form .newsletter-email:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-form .newsletter-submit {
    flex: 0 0 auto;
    white-space: nowrap;
    border: none;
    border-radius: 0;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
}

.newsletter-message {
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .newsletter-form {
        border-radius: 12px;
    }

    .newsletter-form .newsletter-email,
    .newsletter-form .newsletter-submit {
        border-radius: 0;
    }
}

/* ЧЗВ модул (FaqAccordion) */
.faq-accordion-title {
    font-weight: 700;
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-accordion-subtitle {
    color: var(--muted-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.faq-accordion-section .row.g-4 {
    margin-top: 0;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-color-strong);
    background: transparent;
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1rem 0;
    background: transparent;
    box-shadow: none;
    color: var(--dark-color);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: var(--muted-color);
}

/* Статистика модул (StatsCounters) */
.stats-counters-block {
    padding: 50px 24px;
    border-radius: 15px;
}

.stats-counters-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
}

.stats-counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stats-counters-block.text-white .stats-counter-number {
    color: white;
}

.stats-counter-label {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

@media (max-width: 576px) {
    .stats-counter-number {
        font-size: 2rem;
    }
}

/* Начини на плащане модул (TrustBadges) */
.trust-badges-block {
    padding: 20px 0;
}

.trust-badges-title {
    font-weight: 600;
    color: var(--muted-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.trust-badge-item {
    background: white;
    border: 1px solid var(--border-color-strong);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    transition: box-shadow 0.3s ease;
}

.trust-badge-item:hover {
    box-shadow: var(--shadow-sm);
}

.trust-badge-item img {
    max-height: 26px;
    max-width: 60px;
    object-fit: contain;
}

.trust-badges-secure-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--muted-color);
}

.trust-badges-secure-note i {
    color: var(--success-color);
    margin-right: 4px;
}
