/* ===== Основни стилове и CSS променливи ===== */
:root {
    /* Цветова палитра - тъмносиньо-сива и елегантна */
    --primary-dark: #1a1f2e;
    --primary-gray: #252a38;
    --secondary-gray: #2f3542;
    --light-gray: #3a3f4d;
    --border-light: #4a4f5d;
    --border-dark: #1a1f2e;
    
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d478;
    --accent-blue: #1a4d6b;
    
    --bg-white: #f5f3ed;
    --bg-light: #faf8f3;
    --bg-cream: #fdfbf7;
    --bg-dark: #1a1f2e;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ===== Reset и базови стилове ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== Помощни класове ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Типография ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-gold);
}

/* Предпазване от image overflow */
img {
    max-width: 100%;
    height: auto;
}

/* ===== Header & Navigation ===== */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    border-bottom: 2px solid var(--accent-gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
}

.logo img {
    display: block;
    max-width: 180px;
    height: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    justify-content: center;
}

.nav-link {
    display: inline-block;
    padding: 8px 0;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.header-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
}

.header-phone-btn svg {
    width: 18px;
    height: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.contact-item a {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.phones div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ===== Бутони - ЧИСТ И ЕЛЕГАНТЕН ДИЗАЙН ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PRIMARY BUTTON - Син → Жълт на hover */
.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: #ffffff;
    box-shadow: 0 3px 12px rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd93d 0%, #f4c542 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 217, 61, 0.3);
}

/* SECONDARY BUTTON - Прозрачен син → Жълт на hover */
.btn-secondary {
    background: rgba(30, 58, 95, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd93d 0%, #f4c542 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 217, 61, 0.3);
}

/* LARGE BUTTONS */
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 10px;
    letter-spacing: 1.2px;
}

/* БУТОНИ НА ТЪМЕН ФОН - Жълти по default за видимост! */
.btn-on-dark {
    background: linear-gradient(135deg, #ffd93d 0%, #f4c542 100%) !important;
    color: #1a1a1a !important;
    box-shadow: 0 4px 16px rgba(255, 217, 61, 0.4) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.btn-on-dark:hover {
    background: linear-gradient(135deg, #fff8dc 0%, #ffd93d 100%) !important;
    color: #1a1a1a !important;
    box-shadow: 0 6px 24px rgba(255, 217, 61, 0.6) !important;
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.15) !important;
}

/* ===== Hero секция ===== */
.hero-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 50%, var(--secondary-gray) 100%);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
    filter: grayscale(100%) brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-year {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    font-weight: 400;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: var(--accent-gold-light);
    font-weight: 400;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-availability {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    background: rgba(201, 161, 58, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 161, 58, 0.3);
}

/* ===== Секции ===== */
section {
    padding: 50px 0;
}

.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 16px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    color: var(--accent-gold-light);
    font-size: 1.3rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}
.dropdown-menu li{list-style:none}
.dropdown-menu a{display:block;padding:8px 10px;border-radius:8px;color:var(--text);font-weight:600}
.dropdown-menu a:hover{background:rgba(14,165,233,.04);color:var(--accent)}
.dropdown.open .dropdown-menu{display:block}
.ui-select{appearance:none;-webkit-appearance:none;background:linear-gradient(180deg,#fff,transparent);border:1px solid rgba(16,24,40,.04);color:var(--text);padding:10px 40px 10px 12px;border-radius:10px;font-weight:600;font-size:.98rem;cursor:pointer;background-image:linear-gradient(transparent,transparent),url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%230f1724' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:14px 14px}
.ui-select:focus{outline:none;box-shadow:0 6px 20px rgba(16,24,40,.06)}
.btn{display:inline-block;padding:10px 16px;border-radius:10px;background:var(--btn);color:var(--text);font-weight:600;transition:transform .16s,box-shadow .16s,background .18s;text-decoration:none;border:1px solid var(--border)}
.btn:hover{transform:translateY(-3px) scale(1.06);box-shadow:0 12px 30px rgba(16,24,40,.08);background:var(--btn-hover)}
.btn:focus{outline:none;box-shadow:0 0 0 4px rgba(14,165,233,.12)}
.cart-btn{position:relative;display:inline-flex;align-items:center;gap:6px;padding:10px 18px;border-radius:999px;background:var(--btn);color:var(--text);font-weight:700;border:1px solid var(--border);transition:transform .16s,box-shadow .16s,background .18s}
.cart-btn:hover{transform:translateY(-3px) scale(1.08);box-shadow:0 14px 36px rgba(16,24,40,.08);background:var(--btn-hover)}
.cart-badge{position:absolute;top:-6px;right:-6px;min-width:20px;height:20px;padding:0 6px;border-radius:999px;background:var(--sale);color:#fff;font-weight:800;font-size:.75rem;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 3px var(--bg)}
.site-footer{border-top:1px solid var(--border);background:linear-gradient(180deg,#fff,rgba(255,255,255,.98));color:var(--text);padding:28px 0 36px;margin-top:28px}
.footer-wrap{display:flex;flex-direction:column;gap:18px;align-items:center}
.footer-top{width:100%;display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap}
.social{display:flex;gap:12px}
.social-link{display:inline-block;padding:8px 10px;border-radius:8px;background:rgba(14,165,233,.06);color:var(--text);text-decoration:none;font-weight:700}
.social-link:hover{background:rgba(14,165,233,.12);color:var(--accent)}
.footer-links{color:var(--muted);font-weight:600}
.footer-bottom{width:100%;display:flex;justify-content:center;align-items:center}
.copyright{color:var(--muted);font-size:.95rem}
.slide-actions{display:flex;gap:12px;margin-top:8px}
.slide-actions .btn{padding:12px 18px;font-size:1rem;transition:transform .14s ease,box-shadow .14s ease,background.12s;transform-origin:center center;text-decoration:none;will-change:transform;z-index:3}
.slide-actions .btn:hover{transform:translateY(-3px) scale(1.12);box-shadow:0 14px 36px rgba(16,24,40,.08)}

/* Minimal, safe fixes — only these rules appended to avoid regressions */
.background,.bg{background:transparent!important;background-image:none!important}
.slide-visual{height:100%;min-height:320px;background-size:cover;background-position:center;background-repeat:no-repeat}

/* ===== За нас секция ===== */
.about-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
}

.about-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    text-align: center;
}

.about-text .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

.about-image img {
    width: 100%;
    height: autowhite;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.services-wide-card {
    display: grid;
    margin-bottom: 48px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 32px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.service-card-wide {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
}

.service-content-wide {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card-wide .service-title {
    margin-bottom: 0;
}

.service-card-wide .service-description {
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-additional {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.additional-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.additional-list {
    list-style: none;
    padding-left: 0;
}

.additional-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.additional-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== Защо ние секция ===== */
.why-us-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-us-text .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.why-us-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--text-light);
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.3rem;
}

.feature-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* ===== CTA секция ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 50%, var(--secondary-gray) 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    color: var(--text-light);
    padding: 60px 0 24px;
    border-top: 2px solid var(--accent-gold);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-gold-light);
    padding-left: 4px;
}

.footer-address {
    font-style: normal;
}

.footer-address p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-address svg {
    flex-shrink: 0;
    color: var(--accent-gold);
}

.footer-address a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-address a:hover {
    color: var(--accent-gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Фиксиран бутон за обаждане ===== */
.floating-call-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(255, 217, 61, 0.5);
    background: linear-gradient(135deg, #ffd93d 0%, #f4c542 100%);
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.1);
}

.call-btn-text {
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== Responsive Траурна агенция ===== */
@media (max-width: 1024px) {
    .header-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-content,
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    /* Мобилно меню */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        background: var(--accent-gold);
        color: var(--text-light);
        border: none;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1000;
        transition: var(--transition-fast);
        box-shadow: 0 4px 12px rgba(201, 161, 58, 0.3);
    }
    
    .mobile-menu-toggle:hover {
        background: var(--accent-gold-light);
        transform: translateY(-50%) scale(1.05);
    }
    
    .mobile-menu-toggle:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.15rem;
        border-bottom: 1px solid var(--border-light);
        font-weight: 600;
        color: var(--text-primary) !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-gold) !important;
        border-bottom-color: var(--accent-gold);
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-card {
        padding: 24px 20px;
        margin: 0;
        max-width: 100%;
    }
    
    .service-card-wide {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .service-card-wide .service-icon {
        margin: 0 auto 16px;
    }
    
    /* Overflow protection за цялата страница */
    body {
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        padding: 0 10px;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    
    .hero-year {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 40px 16px;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 16px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    /* Page header mobile */
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
        padding: 0 16px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 16px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* About section mobile */
    .about-section .container {
        padding: 0 20px;
    }
    
    .about-content {
        padding: 0 !important;
    }
    
    .about-text p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        text-align: center !important;
        padding: 0 10px;
    }
    
    /* Header mobile */
    .header-top {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 0;
        position: relative;
    }
    
    .logo {
        text-align: center;
        max-width: 150px;
        margin: 0 auto;
    }
    
    .logo img {
        max-width: 140px;
        height: auto;
    }
    
    .header-contact {
        display: none !important;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-nav {
        text-align: center;
    }
    
    .footer-address p {
        justify-content: center;
    }
    
    /* Service cards mobile */
    .service-card {
        padding: 24px 20px;
        margin: 0;
        max-width: 100%;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    /* Info sections mobile */
    .info-section .lead-text,
    .experience-section .lead-text {
        font-size: 1rem !important;
        padding: 0 16px !important;
    }
    
    .experience-section h3 {
        font-size: 1.2rem !important;
        padding: 0 16px;
    }
    
    /* Testimonials mobile */
    .testimonials-section .testimonial-card {
        padding: 24px 20px !important;
    }
    
    .testimonials-section p {
        font-size: 0.95rem !important;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 40px 0 !important;
    }
    
    .cta-section h2 {
        font-size: 1.5rem !important;
        padding: 0 16px;
    }
    
    .cta-section p {
        font-size: 1rem !important;
        padding: 0 16px;
    }
    
    /* Fix за inline grid-ове в products page и други */
    [style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Fix за карти които overflow-ват */
    [style*="display: grid"] > * {
        min-width: 0;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Каталожни карти */
    article {
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    /* Всички бутони да са full width на mobile */
    .btn {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobile menu overlay */
    .main-nav.open::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Всички секции да нямат horizontal overflow */
    section {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden !important;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    /* Page header малки екрани */
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        padding: 0 12px;
    }
    
    .page-subtitle {
        font-size: 1rem;
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 8px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 8px;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 12px;
    }
    
    .btn-large {
        font-size: 0.95rem;
        padding: 14px 20px;
        width: 100%;
    }
    
    .about-text p {
        font-size: 0.95rem !important;
        padding: 0 8px !important;
    }
    
    /* Service cards за малки екрани */
    .service-card {
        padding: 20px 16px !important;
    }
    
    /* Header за малки екрани */
    .logo img {
        max-width: 120px !important;
    }
    
    .mobile-menu-toggle {
        padding: 10px 12px;
        font-size: 1.3rem;
    }
}


/* ===== Pricing таблици - професионален дизайн ===== */
.pricing-section {
    background: var(--bg-white);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.price-table-wrapper {
    margin-bottom: 64px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
}

.price-table-wrapper:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.price-table-title {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    color: var(--text-light);
    padding: 24px 32px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-table-title::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.price-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.price-table thead {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid var(--accent-gold);
}

.price-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-light);
}

.price-table th:first-child {
    width: 55%;
}

.price-table th:nth-child(2),
.price-table th:nth-child(3) {
    width: 22.5%;
    text-align: right;
}

.price-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-light);
}

.price-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.price-table tbody tr:hover {
    background: linear-gradient(90deg, #fff5e1 0%, #fffbf0 100%);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(201, 161, 58, 0.1);
}

.price-table td {
    padding: 16px 24px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.5;
}

.price-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
    text-align: right;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.05rem;
}

.price-table td:nth-child(2) {
    color: #2d5a3d;
}

.pricing-note {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
    padding: 32px;
    border-radius: 12px;
    border: 3px solid var(--accent-gold);
    margin-top: 48px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
    position: relative;
}

.pricing-note::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
}

.pricing-note h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-note h3::before {
    content: "ⓘ";
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.8rem;
}

.pricing-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-note p strong {
    color: var(--primary-dark);
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Responsive pricing tables */
@media (max-width: 768px) {
    .price-table-title {
        font-size: 1.4rem;
        padding: 20px 20px;
    }
    
    .price-table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .price-table {
        min-width: 100%;
        font-size: 0.85rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .price-table th:first-child,
    .price-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-light);
        z-index: 1;
        max-width: 150px;
        white-space: normal;
    }
    
    .price-table th:first-child {
        width: 150px;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    }
    
    .price-table th:nth-child(2),
    .price-table th:nth-child(3) {
        min-width: 80px;
    }
    
    .pricing-note {
        padding: 24px 20px;
    }
    
    .pricing-note h3 {
        font-size: 1.3rem;
    }
    
    .pricing-note p {
        font-size: 0.95rem;
    }
}

/* ===== Catering Styles ===== */
.catering-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.catering-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.catering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.catering-card {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.catering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.catering-card.featured {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 20px rgba(201, 161, 58, 0.2);
}

.catering-card.vegan-option {
    border-color: #4caf50;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(201, 161, 58, 0.4);
}

.vegan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.catering-card-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    padding: 24px;
    color: white;
    text-align: center;
}

.variant-badge {
    display: inline-block;
    background: rgba(201, 161, 58, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.catering-card-header h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.catering-card-body {
    padding: 32px 24px;
}

.catering-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catering-menu li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.catering-menu li:last-child {
    border-bottom: none;
}

.catering-menu li:hover {
    padding-left: 8px;
    color: var(--accent-gold);
}

.catering-menu .icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.catering-card-footer {
    padding: 0 24px 24px;
    text-align: center;
}

.platters-section {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--bg-light);
    border-radius: 12px;
}

.platters-section .section-title {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.platters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.platter-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.platter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platter-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.platter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.platter-card:hover .platter-image img {
    transform: scale(1.1);
}

.platter-info {
    padding: 24px;
}

.platter-info h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.platter-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.catering-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 64px;
    box-shadow: var(--shadow-lg);
}

.catering-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.catering-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .catering-grid {
        grid-template-columns: 1fr;
    }
    
    .platters-grid {
        grid-template-columns: 1fr;
    }
    
    .catering-cta {
        padding: 40px 24px;
    }
    
    .catering-cta h3 {
        font-size: 1.6rem;
    }
    
    .catering-cta p {
        font-size: 1rem;
    }
}

/* ===== Catalogues Grid (Products Page) ===== */
.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.catalogues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.catalogue-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 3px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catalogue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.catalogue-card:hover::before {
    transform: scaleX(1);
}

.catalogue-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
}

.catalogue-card.highlight-card {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.catalogue-icon {
    margin-bottom: 24px;
}

.catalogue-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.catalogue-content {
    width: 100%;
}

.catalogue-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalogue-card:hover .catalogue-title {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalogue-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.catalogue-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.catalogue-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalogue-features li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.catalogue-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}

.catalogue-actions .btn {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.products-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 64px;
    box-shadow: var(--shadow-lg);
}

.products-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .catalogues-grid {
        grid-template-columns: 1fr;
    }
    
    .catalogue-card {
        padding: 24px;
    }
    
    .catalogue-icon img {
        width: 100px;
        height: 100px;
    }
    
    .catalogue-title {
        font-size: 1.5rem;
    }
    
    .catalogue-actions {
        flex-direction: column;
    }
    
    .catalogue-actions .btn {
        width: 100%;
    }
    
    .products-cta {
        padding: 40px 24px;
    }
    
    .products-cta h3 {
        font-size: 1.6rem;
    }
}

/* ===== Catalogue Items Section (Individual Product Pages) ===== */
.catalogue-items-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* Catalogue Grid Layout */
.catalogue-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Catalogue Item Card - Main Container */
.catalogue-item-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.catalogue-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    border-color: var(--accent-gold);
}

/* Image Container - No padding, no margin, no gaps */
.catalogue-item-image {
    position: relative;
    width: 100%;
    height: 320px;
    background: #f5f5f5;
    flex-shrink: 0;
    overflow: hidden;
}

.catalogue-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.catalogue-item-card:hover .catalogue-item-image img {
    transform: scale(1.05);
}

/* Info Section - Text and Button */
.catalogue-item-info {
    padding: 20px;
    text-align: center;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.catalogue-item-info h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    font-weight: 700;
}

/* Bookmark Button */
.catalogue-item-info .btn-bookmark {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.catalogue-item-info .btn-bookmark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

/* Primary Button for Catalogue */
.catalogue-item-info .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.catalogue-item-info .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

.catalogue-note {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-gray) 100%);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-gold);
}

.catalogue-note p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.catalogue-note a {
    color: var(--accent-gold);
    font-weight: 700;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.catalogue-note a:hover {
    color: var(--accent-gold-light);
    text-decoration: none;
}

/* Responsive design for catalogue items */
@media (max-width: 1024px) {
    .catalogue-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }
    
    .catalogue-item-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .catalogue-items-section {
        padding: 40px 0 60px;
    }
    
    .catalogue-items-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 0 16px;
    }
    
    .catalogue-item-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .catalogue-item-image {
        height: 250px;
    }
    
    .catalogue-item-info {
        padding: 24px 20px;
    }
    
    .catalogue-item-info h3 {
        font-size: 1.3rem;
    }
    
    .catalogue-item-info .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .catalogue-item-info h3 {
        font-size: 1.2rem;
    }
    
    .catalogue-note {
        padding: 24px;
    }
    
    .catalogue-note p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .catalogue-items-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 12px;
    }
    
    .catalogue-item-card {
        max-width: 100%;
    }
    
    .catalogue-item-image {
        height: 220px;
    }
    
    .catalogue-item-info {
        padding: 20px 16px;
    }
    
    .catalogue-item-info h3 {
        font-size: 1.1rem;
    }
    
    .catalogue-item-info .btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ========================================
   Търсачка в ценоразпис
   ======================================== */

.price-search-container {
    margin: 32px 0 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: var(--primary-gray);
    pointer-events: none;
}

.price-search-input {
    width: 100%;
    padding: 16px 48px 16px 48px;
    font-size: 1.1rem;
    border: 2px solid rgba(30, 58, 95, 0.2);
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.price-search-input:focus {
    outline: none;
    border-color: var(--primary-gray);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.15);
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    background: rgba(30, 58, 95, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-gray);
}

.clear-search-btn:hover {
    background: rgba(30, 58, 95, 0.2);
    transform: rotate(90deg);
}

.search-results {
    margin-top: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-result-item {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 217, 61, 0.08);
}

.search-result-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.search-result-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 8px 0;
}

.search-result-prices {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.search-result-price {
    font-size: 1rem;
    color: var(--primary-gray);
    font-weight: 600;
}

.search-result-price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-right: 4px;
}

.no-results {
    text-align: center;
    padding: 48px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.no-results svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-results p {
    color: var(--text-secondary);
    margin: 8px 0;
}

.no-results p:first-of-type {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.no-results-hint {
    font-size: 0.95rem;
    color: #999;
}

/* Скрий таблиците когато търсенето е активно */
.hide-tables .price-table-wrapper {
    display: none;
}

@media (max-width: 768px) {
    .price-search-input {
        font-size: 1rem;
        padding: 14px 44px 14px 44px;
    }
    
    .search-result-item {
        padding: 16px 20px;
    }
    
    .search-result-prices {
        flex-direction: column;
        gap: 8px;
    }
}
