:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4E4A6;
    --black: #111;
    --dark-gray: #3A3A3A;
    --light-gray: #8A8A8A;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HERO HEADER SECTION ===== */
.hero-header {
    height: 50vh;
    position: relative;
    overflow: hidden;
/*    min-height: 400px;*/
}
.container-narrower {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 10px;
}



.hero-left {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)), url('../../images/dedovafarma/dedova-farma-pribeh2.jpg');
    
    background-size: cover;
    background-position: center;
    height: 50vh;
  /* min-height: 500px;*/ 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-left-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.hero-logo img {
    width: 100%;
    padding: 0 50px;
    margin-bottom: 0;
    filter: brightness(0) invert(1) drop-shadow(2px 4px 6px black);
}
.navbar-brand {
	display: block;
}

.navbar-brand-menu img {
	height: 40px;
	min-width: 150px;
    filter: brightness(0) invert(1) drop-shadow(2px 4px 6px black);
}

.hero-logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
    line-height: 1;
}

.gold-text {
    color: var(--primary-gold) !important;
}



.hero-tagline {
       font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-top: 20px;
    text-shadow: 1px 1px 4px rgba(6, 6, 6, 0.8);
}

.hero-right {
    height: 50vh;
  /*  min-height: 500px;*/
    overflow: hidden;
}

.hero-right-image {
    height: 100%;
    position: relative;
}

.hero-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/** hero-half **/

.hero-header.hero-half {
    height: 20vh;
    position: relative;
    overflow: hidden;
/*    min-height: 400px;*/
}

.hero-half .hero-left {
    height: 20vh;
}

.hero-half .hero-right {
    height: 50vh;
}

.hero-half .hero-logo img{
	max-height: 70px;
}





/* Social Icons - removed from hero, only in footer */

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

/* ===== NAVIGATION ===== */
.main-navigation {
    background: var(--black);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-navigation .navbar-nav {
    width: 100%;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.main-navigation .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 20px 25px !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
    color: var(--primary-gold) !important;
    background: unset;
    text-decoration: none;
}

.main-navigation .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-navigation .nav-link:hover::after,
.main-navigation .nav-link.active::after {
    width: 80%;
}


@media (max-width: 1399px) {
    .main-navigation .nav-link {
        padding: 20px 15px !important;
    }
}

@media (max-width: 1200px) {
    .main-navigation .nav-link {
        padding: 20px 5px !important;
    }
}

/* Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;

    margin-left: auto;

}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-line {
    width: 28px;
    height: 4px;
    background-color: var(--white);
    transition: var(--transition);
    transform-origin: center;
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== SECTIONS ===== */
.section-title {
font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    color: #212529 !important;
    margin-bottom: 20px;
    letter-spacing: 2px;
    
    
}

.section-divider {
    width: 120px;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto 20px;
}

.section-subtitle {
font-size: 1.4rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
}


.section-header-hr {
    border-top-color: var(--primary-gold);
    border-top: 1px solid var(--primary-gold);
    opacity: 1;
    width: 150px;
    display: inline-block;
    margin: 0 10px 0 0;
    vertical-align: middle;
}



.details-name {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 5px;
    text-transform: none;
    font-weight: 500;

    color: var(--black);
}
.product-media {
    position: relative;
    text-align: center;
    padding-bottom: 10px;
    padding-top: 20px;
    min-height: 220px;
}

/* ===== NEW ARRIVALS / PRODUKTY ===== */
.new-arrivals {
    padding: 100px 0;
    background: var(--bg-light);
}

.new-arrivals .na-product-card {
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}

.new-arrivals .na-product-card:hover {
    transform: translateY(-10px);
}

.new-arrivals .na-product-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
}

.new-arrivals .na-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.new-arrivals .na-product-card:hover .product-image img {
    transform: scale(1.1);
}

.new-arrivals .na-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.new-arrivals .na-product-card:hover .na-product-overlay {
    background: rgba(212, 175, 55, 0.8);
}

.new-arrivals .na-product-overlay .na-product-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    transition: var(--transition);
}

.new-arrivals .na-product-card:hover .na-product-overlay .na-product-title {
    transform: scale(1.1);
}


/* Center Text Block */
.center-text-block {

    background: none;
    /* box-shadow: var(--shadow); */
    height: 100%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 20px solid var(--primary-gold);
}
}

.center-text-block h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.main-slogan {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 400;
    font-style: italic;
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-item {
    
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.badge-item:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.badge-item i {
    font-size: 0.8rem;
}



/* ===== STORY SECTION ===== */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-image {
    margin-bottom: 15px;
    overflow: hidden;
    
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    padding-left: 40px;
    display: flex;
    align-items: center;
    height: 100%;
}

.story-text-box {
    border: 20px solid var(--primary-gold);
    padding: 40px;
    background: var(--white);
    position: relative;
}

.story-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-text-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-gray);
    text-align: justify;
}

.story-highlight {
    color: var(--primary-gold) !important;
    font-weight: 600 !important;
    font-style: italic;
    text-align: center !important;
    margin-top: 30px !important;
}
.news-section {
	  padding: 100px 0;
    background: var(--bg-light);
    
}

.news-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}



/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--black);
    padding: 80px 0;
    color: var(--white);
    border-bottom: 1px solid #444;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
    padding: 15px 25px;
    font-size: 1rem;
    background: var(--white);
    height: unset;
}


.btn-gold {
    border-radius: 0;
    padding: 15px 30px;
    background: var(--primary);
    background: white;
    border: 2px solid var(--primary);
    font-weight: 600;
    color: var(--black);
}
.btn-gold:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-gold-inv {
    border-radius: 0;
    padding: 15px 30px;
    background: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    color: white;
}
.btn-gold-inv:hover {
    background: var(--white);
    color: var(--black);
}



.newsletter-form .btn {
    border-radius: 0;
    padding: 15px 30px;
    background: var(--primary-gold);
    border: none;
    font-weight: 600;
    color: var(--black);
}

.newsletter-form .btn:hover {
    background: var(--dark-gold);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 120px;
}

.footer h5, .footer h6 {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--white);
}

.footer i {
    color: var(--primary-gold);
    margin-right: 8px;
    width: 15px;
}

.opening-hours {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 10px;
}

.opening-hours i {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
  /*  background: var(--primary-gold);*/
    color: var(--primary-gold);
    /*border-radius: 50%;*/ 
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
   /* background: var(--dark-gold);*/
    transform: scale(1.1);
    color: var(--white);
}

.social-links a i {
    font-size: 2rem;
    margin: 0;
    width: auto;
    color: inherit;
}

.footer hr {
    border-color: #333;
    margin: 30px 0 20px;
    background-color: #333;
}

.footer .text-center p {
    margin: 0;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.text-gold {
    color: var(--primary-gold) !important;
    text-decoration: none;
}

.text-gold:hover {
    color: var(--dark-gold) !important;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
    background: var(--black);
    padding: 60px 0 0;
    color: var(--white);
}

.about-subtitle {
    color: var(--light-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.about-text {
    /* font-size: 1.1rem; */
    line-height: 1.8;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    font-style: italic;
    color: #ccc !important;
}

.footer-bottom {
    background: var(--dark-gray);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--light-gray);
}

.gold-link {
    color: var(--primary-gold);
    text-decoration: none;
}

.gold-link:hover {
    color: var(--dark-gold);
}


@media (max-width: 1400px) {
	.main-navigation .navbar-nav {
	    gap: 1rem;
	}
	
}
@media (max-width: 1200px) {
	.main-navigation .navbar-nav {
	    gap: 1rem;
	}
	
}



	
/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
	
	
	
    .hero-header {
        height: auto;
    }
    
    .hero-left, .hero-right {
        height: 35vh;
        min-height: 300px;
    }
    .hero-right {
    display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-content {
        padding-left: 0;
        margin-top: 0;
    }
    
    .story-text-box {
        padding: 30px;
    }
    
    /* Mobile Menu Styling */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(43, 43, 43, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation .navbar-nav {
        gap: 0;
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation .nav-link {
        padding: 25px !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
	.navbar-brand-menu {
	/*	display: none !important;*/
	}
    .hero-logo h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
.new-arrivals .na-product-overlay .na-product-title

 {
 	font-size: 1.5rem;
 }
    
    .story-text-box {
        padding: 25px;
        
    }
    
        .main-slogan {
    font-size: 1rem;
}





.center-text-block {
	padding: 5px;
    border: 10px solid var(--primary-gold);
}
.center-text-block h2 {
    line-height: 28px;
    font-size: 28px;
    margin-bottom: 10px;
}

.story-text-box {
    border: 10px solid var(--primary-gold);
    
}
.quality-badges {
	display: none;
}

    .story-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-section h2 {
        font-size: 2rem;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 0 !important;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hero-left, .hero-right {
        height: 30vh;
        min-height: 250px;
    }
    .hero-right {
    	display: none;
    }
            .main-slogan {
font-size: 0.8rem;
        margin-bottom: 0;
        margin-top: 0 !important;
}
    

    .hero-logo img {
        margin-bottom: 0;
        margin-top: 40px;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    

    
    .new-arrivals {
        padding: 60px 0;
    }
    
    .story-section {
        padding: 60px 0;
    }
    
    .story-text-box {
        padding: 20px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .footer .col-lg-3 {
        margin-bottom: 30px;
    }
    
    .product-overlay .product-title {
        font-size: 1.2rem;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
}

.height-100 {
	height: 100%;
}
/* Hamburger v hero sekci */
.hero-hamburger {
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    padding: 2px;
    border-radius: 0;
    backdrop-filter: blur(5px);
    display: none; /* Defaultně skrytý */
}

/* Zobrazit hero hamburger jen na mobilu */
@media (max-width: 991.98px) {
    .hero-hamburger {
        display: flex
;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 45px;
        height: 45px;
    }
    
    /* Schovat původní hamburger z navigace */
    .main-navigation .navbar-toggler {
        display: none;
    }
}

.hero-hamburger .hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}



/* Animace na křížek pro hero hamburger */
.hero-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hero-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hero-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



@media (max-width: 767.98px) {
    .footer .col-lg-3,
    .footer .col-md-6 {
        text-align: center;
    }
    
    .footer h5 {
        text-align: center;
    }
    
    .footer p {
        text-align: center;
    }
    
    .opening-hours {
        text-align: center;
    }
}


/* ===== KATEGORIE SUBMENU ===== */
.df-category-navigation {
    background: var(--primary-gold);
    padding: 0;
    position: sticky;
    top: 62px; /* VĂ˝Ĺˇka hlavnĂ­ho menu */
    z-index: 99;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.df-category-navigation .df-category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    flex-wrap: wrap;
        max-width: 1000px;
    margin: 0 auto;
}

.df-category-navigation .df-category-item {
    display: flex;
}

.df-category-navigation .df-category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    color: var(--black) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    min-height: 70px;
    justify-content: center;
}


.df-category-navigation .df-category-item {
   display: flex;
   flex: 1; /* Všechny položky budou stejně široké */
   max-width: 130px;
}

.df-category-navigation .df-category-link {
   width: 100%; /* Link vyplní celou šířku položky */
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 15px 20px;
   color: var(--black) !important;
   text-decoration: none;
   font-weight: 600;
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   transition: var(--transition);
   position: relative;
   min-height: 70px;
   justify-content: center;
}



.df-category-navigation .df-category-link i {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--black);
    transition: var(--transition);
}

.df-category-navigation .df-category-link span {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

.df-category-navigation .df-category-link:hover,
.df-category-navigation .df-category-link.active {
    background: var(--dark-gold);
    color: var(--white) !important;
}

.df-category-navigation .df-category-link:hover i,
.df-category-navigation .df-category-link.active i {
    color: var(--white);
    transform: scale(1.1);
}

.df-category-navigation .df-category-link.cart-link {
    background: var(--black);
    color: var(--white) !important;
    border-radius: 5px;
    margin-left: 1rem;
}

.df-category-navigation .df-category-link.cart-link i {
    color: var(--white);
}

.df-category-navigation .df-category-link.cart-link:hover {
    background: var(--dark-gray);
}

    	.df-mobile-header {
    	display: none;
    	}


/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
   .df-category-navigation .df-category-navigation {
        top: 0;
    }
    
  .df-category-navigation  .df-category-nav {
        gap: 1rem;
        padding: 10px 0;
    }
    
   .df-category-navigation .df-category-link {
        padding: 10px 15px;
        min-height: 60px;
    }
    
   .df-category-navigation .df-category-link i {
        font-size: 1.2rem;
    }
    
   .df-category-navigation .df-category-link span {
        font-size: 0.7rem;
    }
    
    	.df-mobile-header {
    	display: block;
        position: sticky;
        top: 0;
        height: 70px;
        background: rgba(0, 0, 0, 0.9);
        z-index: 99;
	}
	
	.df-category-navigation {
	    position: sticky;
    	top: 70px;
	}
    
}


@media (max-width: 767.98px) {
	
	.df-mobile-header {
        position: sticky;
        top: 0;
        height: 70px;
        background: rgba(20, 20, 20, 0.9);
        z-index: 99999;
	}
	
	.df-category-navigation {
	    position: sticky;
    	top: 70px;
	}
	
   .df-category-navigation .df-category-nav {
        gap: 0;
        justify-content: space-between;
        padding: 0;
    }
    
   .df-category-navigation .df-category-link {
        padding: 8px 10px;
        	height: 100%;
        flex: 1;
    }
    
    .df-category-navigation .df-category-link span {
        font-size: 0.6rem;
    }
    
    .df-category-navigation .df-category-link i {
        font-size: 1.1rem;
    }
}


.bestsellers-section {
    padding: 0 0 20px 0;
    background: linear-gradient(to top, #e8e8e8, #f5f5f5);
    margin-top: -40px;
    margin-bottom: 20px;
}
.product-price span {
    font-weight: bold;
}
.header-widget {
	height: 100%;
}


.header-section {
    background: #f5f5f5;
    margin-bottom: 10px;
    padding: 10px 0;
}

.breadcrumbs {
    background: #fff;
    
}
.bestsellers-section
 {
 margin-top: 0;
}

h1.browse-header {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 50px;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 30px;
    position: relative;
}
h1.browse-header::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background-color: var(--primary-gold);
}


.bestsellers-section .section-title {
    font-weight: 500;
    text-align: center;
}

.store-separator {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    position: relative;
}



    .store-card {
/*    	border: 1px solid #eee;
  	    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);*/
    	padding: 10px;
  		/*transition: box-shadow 0.3s ease;*/
  		height: 100%;
  		display: flex;
flex-direction: column;
height: 100%;
    }
    .store-card:hover {
  	 /*   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);*/
  		
    }
      .store-type {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-gold);
            color: var(--black);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        .store-image {
        position: relative;
}
        .store-content {
            padding: 0;
            display: flex;
flex-direction: column;
flex: 1;
        }

        h3.store-name {
			font-size: 20px;
            margin-top: 10px !important;
            margin-bottom: 15px;
   
        }
        img.store-img {
       	 margin: 0
        }

        .store-address {
            color: var(--dark-gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .store-address i {
            color: var(--primary-gold);
            margin-top: 2px;
            min-width: 16px;
        }

        .store-phone {
            color: var(--dark-gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: var(--transition);
        }

        .store-phone:hover {
            color: var(--primary-gold);
        }

        .store-phone i {
            color: var(--primary-gold);
            min-width: 16px;
        }

        .store-hours {
            background: var(--bg-light);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-gold);
          
        }

        .store-hours h6 {
            color: var(--black);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            color: var(--dark-gray);
            font-size: 0.85rem;
            margin-bottom: 3px;
        }

        .store-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .status-open {
            background: #d4edda;
            color: #155724;
        }

        .status-closed {
            background: #f8d7da;
            color: #721c24;
        }

        .store-actions {
            display: flex;
            gap: 10px;
            margin-top: auto;
            
        }

   /*     .btn-map {
            flex: 1;
            background: var(--primary-gold);
            border: none;
            color: var(--black);
            padding: 12px 20px;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-map:hover {
            background: var(--dark-gold);
            color: var(--white);
            transform: translateY(-2px);
        } */

.btn-map {
    border-radius: 0;
    padding: 5px 40px;
    background: var(--primary-gold);
    background: white;
    border: 2px solid var(--primary-gold);
    font-weight: 600;
    color: var(--black);
}
.btn-map:hover {
    background: var(--primary-gold);
    color: var(--white);
}



.catering-info-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
 
  padding: 20px;
  margin-top: 20px;
}

.catering-service-card {
background: #f8f9fa;
    padding: 15px;
    height: 100%;
    border: 1px solid #e9ecef;
    border: none;
    background: var(--bg-light);
    padding: 15px;
border-radius: 8px;
    margin-bottom: 0;
    border-left: 4px solid var(--primary-gold);
}
.catering-service-card .fa, .catering-service-card .fas {
	font-size: 1.4rem;
	color: #444;
	margin-right: 15px !important;
}


.catering-service-card .small,.catering-service-card  small
{
    font-size: 1em;
}

.catering-important-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;

  padding: 15px;
  margin-top: 20px;
}

.catering-contact-section-gold {
  
    border: 20px solid var(--primary-gold);
  
  padding: 40px 30px;
 
}

.catering-contact-section-gold h3,
.catering-contact-section-gold h4 {
  color: #2c2c2c;
}

.catering-contact-section-gold .lead {
  color: #4a4a4a;
}

.catering-contact-section-gold .text-muted {
  color: #5a5a5a !important;
}

.catering-additional-service {
  background: #ffffff;
  border: 1px solid #e9ecef;
 
  padding: 30px 20px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.catering-additional-service:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.catering-advantage {
  padding: 20px;
}

.catering-advantage:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.blog-details-body p {
    margin-bottom: 1.5rem;
    margin-top: 1.2rem;
    font-size: 16px;
   	line-height: 22px;
    color: #666;
}

/* Gold barva pro ikony */
.gold-color {
/*  color: #d4af37 !important;*/
}
@media (min-width: 992px) {
  h3.fw-bold {
    font-size: 2rem;
  }
  
  h4.fw-semibold {
    font-size: 1.5rem;
  }
  
  h5.fw-bold {
    font-size: 1.25rem;
  }
}

@media (max-width: 991px) {
  h3.fw-bold {
    font-size: 1.75rem;
  }
  
  h4.fw-semibold {
    font-size: 1.25rem;
  }
  
  h5.fw-bold {
    font-size: 1.1rem;
  }
}

.blog-details-content, .rounded, .blog-details-body img {
    border-radius: 0 !important;
}

.category-link i {
    font-size: 20px;
    margin-right: 15px;
    display: inline-block;
    color: var(--primary-gold);
}

.mobile-menu a sup, .mobile-menu button sup {
	border: 2px solid white;
}

.story-images-container {
    display: flex;
    
    height: 100%;
}

.story-image {
    flex: 1; /* každý obrázek zabere stejnou část prostoru */
    min-height: 150px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 100%;
}

.story-image:last-child {
    margin-bottom: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
