/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #b8941f; /* Darker gold */
    --accent-color: #ffd700; /* Bright gold */
    --dark-color: #2a2a2a;
    --dark-bg: #f5f5f5; /* Light gray background */
    --dark-section: #e8e8e8; /* Light gray section background */
    --light-color: #f5f5f5;
    --text-color: #333333; /* Dark text for light theme */
    --text-light: #666666; /* Medium gray text */
    --text-dark: #333; /* Dark text for light sections */
    --white: #ffffff;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8941f;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.99);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo a {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    display: none; /* Skrij besedilo, ker uporabljamo logo */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    box-shadow: 0 0 5px var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Samo en izbirnik jezika: native select skrit v wrapperju, viden le custom dropdown */
.language-selector {
    position: relative;
}

.language-select-hidden {
    position: absolute !important;
    left: -9999px !important;
    top: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    pointer-events: none !important;
}

.language-select-hidden select {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.lang-dropdown {
    position: relative;
    min-width: 100px;
}

.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    min-width: 100px;
    text-align: left;
    color: var(--text-color);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-dropdown-trigger:hover {
    border-color: var(--gold);
}

.lang-dropdown-trigger:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.lang-dropdown-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 1px;
}

.lang-dropdown-text {
    flex: 1;
}

.lang-dropdown-arrow {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

.lang-dropdown.open .lang-dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 2px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    max-height: 280px;
    overflow-y: auto;
    display: none;
}

.lang-dropdown.open .lang-dropdown-list {
    display: block;
}

.lang-dropdown-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-color);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: background 0.15s;
}

.lang-dropdown-option:hover {
    background: rgba(212, 175, 55, 0.12);
}

.lang-dropdown-option img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero: slika komaj vidna (samo obris), spredaj jasen tekst; mobilno 100% širine */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: var(--text-color);
    text-align: center;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
}

/* Hero ozadje – slika berljiva, 100% širine tudi na mobilnih */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    background-image: url('Pictures/Pictures/IPO_Group_Cover.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) brightness(0.5);
    transform: scale(1.04);
    z-index: 0;
}

/* Temen sloj spredaj – tekst jasno v ospredju */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 2rem 1rem 4rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-content.hero-content-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.hero-title-brand {
    display: block;
    margin-top: 0.2em;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1.2s ease;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.92);
    animation: fadeInUp 1.4s ease;
}

.hero-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1.6s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1.8s ease;
}

@media (max-width: 768px) {
    .hero,
    .hero-background-image {
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
    }
    .hero-background-image {
        background-size: cover;
        background-position: center;
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.6);
    background: var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-color);
}

/* Live Metrics Section */
.live-metrics {
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(212, 175, 55, 0.08));
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.ipo-logo-header {
    display: flex;
    justify-content: center;
    margin-bottom: 0.1rem;
    margin-top: 0;
    padding: 0;
}

.ipo-logo-statistics {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    display: block;
    margin: 0.5rem 0;
}

.stats-unified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.stat-icon i {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.live-stats-footer {
    margin-top: 0.75rem;
    text-align: center;
    padding: 0.25rem 0;
}

.live-stats-title-small {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.5rem 0 0.25rem 0;
    font-weight: 400;
    opacity: 0.7;
}

.live-stats-subtitle-small {
    font-size: 0.65rem;
    color: var(--text-light);
    margin: 0;
    opacity: 0.6;
    line-height: 1.4;
}

.live-metrics-info {
    margin-top: 2rem;
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.live-metrics-info p {
    color: #333;
    font-size: 0.95rem;
    margin: 0;
}

.live-metrics-info i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Extra spacing for brands subtitle */
.brands .section-header p {
    margin-bottom: 3rem;
}

/* Extra spacing for social stats subtitle */
.social-stats .section-header p {
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; /* slika naj zapolni celoten stolpec po višini besedila */
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 280px;
    position: relative;
}

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
    display: block;
}

.about-image-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(184,148,31,0.1));
    border-radius: 10px;
    color: var(--gold);
    gap: 0.75rem;
}
.about-image-placeholder i {
    font-size: 3rem;
    opacity: 0.7;
}
.about-image-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--dark-bg);
    opacity: 0.8;
}

/* Europe Map Section */
.europe-map {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

/* Flag-based Map Grid */
.flag-map-container {
    margin-bottom: 3rem;
}

.flag-map-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Desktop: 6 stolpcev (npr. 6+5 za 11 držav), večji krogi, samodejno prilagajanje */
@media (min-width: 900px) {
    .flag-map-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-items: center;
        gap: 1.75rem 1.5rem;
    }
    /* Spodnja vrsta: subgrid = isti stolpci in isti razmak kot prva vrsta, zamik za pol stolpca */
    .flag-map-last-row-wrap {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: subgrid;
        justify-items: center;
        align-items: center;
        transform: translateX(calc(((100% - 5 * 1.5rem) / 6) / 2));
    }
    .flag-map-last-row-wrap > .flag-country-item:nth-child(1) { grid-column: 1; }
    .flag-map-last-row-wrap > .flag-country-item:nth-child(2) { grid-column: 2; }
    .flag-map-last-row-wrap > .flag-country-item:nth-child(3) { grid-column: 3; }
    .flag-map-last-row-wrap > .flag-country-item:nth-child(4) { grid-column: 4; }
    .flag-map-last-row-wrap > .flag-country-item:nth-child(5) { grid-column: 5; }
}

.flag-country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.flag-country-item.size-small,
.flag-country-item.size-medium,
.flag-country-item.size-large,
.flag-country-item.size-xlarge {
    width: 95px;
    height: 95px;
    padding: 0.5rem;
}

@media (min-width: 900px) {
    .flag-country-item.size-small,
    .flag-country-item.size-medium,
    .flag-country-item.size-large,
    .flag-country-item.size-xlarge {
        width: 115px;
        height: 115px;
        padding: 0.6rem;
    }
}

.flag-country-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.flag-country-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.flag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 0 12px rgba(212, 175, 55, 0.2);
}

@media (min-width: 900px) {
    .flag-country-item .flag-wrapper {
        width: 3.6rem;
        height: 2.4rem;
    }
}

@media (max-width: 768px) {
    .flag-country-item .flag-wrapper {
        width: 2.6rem;
        height: 1.75rem;
    }
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-img-europe-map {
    object-fit: contain;
}

.flag-emoji,
.flag-emoji.flag-fallback {
    font-size: 2.25rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.flag-icon {
    font-size: 2.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-icon .fi {
    font-size: 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
}

.flag-country-item.size-medium .flag-icon .fi,
.flag-country-item.size-large .flag-icon .fi,
.flag-country-item.size-xlarge .flag-icon .fi {
    font-size: 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
}

@media (min-width: 900px) {
    .flag-country-item .flag-emoji.flag-fallback,
    .flag-country-item .flag-icon .fi {
        font-size: 2.75rem;
        width: 2.75rem;
        height: 2.75rem;
    }
}

@media (max-width: 768px) {
    .flag-country-item .flag-emoji.flag-fallback,
    .flag-country-item .flag-icon .fi {
        font-size: 1.9rem;
        width: 1.9rem;
        height: 1.9rem;
    }
}

.flag-country-name {
    font-size: 0.65rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0 0.15rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .flag-country-item .flag-country-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .flag-country-item .flag-country-name {
        font-size: 0.58rem;
    }
}

.flag-country-item.size-medium .flag-wrapper,
.flag-country-item.size-large .flag-wrapper,
.flag-country-item.size-xlarge .flag-wrapper {
    width: 3rem;
    height: 2rem;
}

.flag-country-item:hover .flag-wrapper,
.flag-country-item.active .flag-wrapper {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 16px rgba(212, 175, 55, 0.25);
}

.flag-country-item.size-medium .flag-emoji.flag-fallback,
.flag-country-item.size-large .flag-emoji.flag-fallback,
.flag-country-item.size-xlarge .flag-emoji.flag-fallback {
    font-size: 2.25rem;
}

.flag-country-item:hover .flag-country-name,
.flag-country-item.active .flag-country-name {
    color: var(--gold);
}

/* Marketplace Section */
.marketplace-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 1px 4px rgba(212, 175, 55, 0.08);
}

.marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.marketplace-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.15);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.country-selector label {
    color: var(--text-light);
    font-weight: 600;
}

.country-selector select {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(15, 15, 15, 0.8);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-selector select:hover,
.country-selector select:focus {
    border-color: var(--gold);
    outline: none;
}

.marketplace-content {
    min-height: 200px;
}

.marketplace-placeholder {
    text-align: center;
    color: var(--text-color);
    padding: 3rem;
    font-size: 1.1rem;
}

/* Marketplace Grid */
.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.marketplace-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.marketplace-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.marketplace-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.marketplace-brand-logo {
    width: 88px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.marketplace-brand-name-fallback {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.marketplace-brand-name {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.marketplace-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.marketplace-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.marketplace-link:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.marketplace-link i {
    font-size: 1.2rem;
}

.marketplace-link .fa-globe {
    color: var(--gold);
}

.marketplace-link .fa-amazon {
    color: #ff9900;
}

.marketplace-link .fa-ebay {
    color: #0064d2;
}

.marketplace-link:hover i {
    color: var(--dark-bg);
}

.marketplace-link-text {
    flex: 1;
    font-weight: 600;
}

/* Selected Country Display */
.selected-country-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.selected-country-flag-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
}

.selected-country-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-country-flag-emoji {
    font-size: 2rem;
    line-height: 1;
}

.selected-country-flag {
    font-size: 2.5rem;
}

.selected-country-info h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.selected-country-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Tablet / manjši zaslon */
@media (max-width: 768px) {
    .flag-map-grid {
        gap: 1.25rem;
        padding: 1.5rem;
    }
    
    .flag-country-item.size-small,
    .flag-country-item.size-medium,
    .flag-country-item.size-large,
    .flag-country-item.size-xlarge {
        width: 88px;
        height: 88px;
        padding: 0.5rem;
    }
    
    .flag-emoji {
        font-size: 2rem;
    }
    
    .marketplace-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .country-selector {
        width: 100%;
    }
    
    .country-selector select {
        flex: 1;
    }
    
    .marketplace-grid {
        grid-template-columns: 1fr;
    }
}

/* Manjši zasloni: brez 6+5 grid – vse zastavice v eni flex vrstici z enakim razmakom */
@media (max-width: 899px) {
    .flag-map-grid {
        max-width: 100%;
    }
    .flag-map-last-row-wrap {
        display: contents;
    }
}

/* Telefon – zelo majhen zaslon */
@media (max-width: 480px) {
    .flag-map-container {
        margin-bottom: 2rem;
    }
    .flag-map-grid {
        gap: 1rem;
        padding: 1rem;
        border-radius: 16px;
    }
    .flag-country-item.size-small,
    .flag-country-item.size-medium,
    .flag-country-item.size-large,
    .flag-country-item.size-xlarge {
        width: 72px;
        height: 72px;
        padding: 0.35rem;
    }
    .flag-country-item .flag-wrapper {
        width: 2.2rem;
        height: 1.5rem;
    }
    .flag-country-item .flag-country-name {
        font-size: 0.7rem;
    }
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.brands-grid.brands-single-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.brand-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.brand-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.brand-logo-img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.2));
}

.brand-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 700;
}

.brand-category {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.brand-mission {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: auto;
}

/* Social Stats Section (Facebook) */
.social-stats {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

/* Europe Map Background */
.europe-map-background {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: contain;
    opacity: 0.3;
    filter: grayscale(100%) brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: visible;
}

.map-wrapper .europe-svg {
    position: relative;
    z-index: 2;
}

/* Facebook Cloud Cards */
.facebook-total-section {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.facebook-cloud-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facebook-cloud-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: cloudFloat 6s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(2deg); }
}

.facebook-cloud-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
}

.facebook-total-cloud {
    min-width: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 3px solid rgba(212, 175, 55, 0.5);
}

.cloud-logo {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.brand-logo-img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.brand-icon-fallback {
    font-size: 4rem;
    color: var(--gold);
}

.cloud-content {
    position: relative;
    z-index: 1;
}

.cloud-content h3,
.cloud-content h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.cloud-likes {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.cloud-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cloud-label .fa-thumbs-up {
    color: var(--gold);
    font-size: 1.5rem;
}

.cloud-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cloud-link:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.05);
}

.facebook-brands-section {
    margin-bottom: 3rem;
}

.brands-section-title {
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.facebook-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.facebook-cloud-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facebook-cloud-card .cloud-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-cloud-card.brand-card-miauhaus .cloud-logo .brand-logo-img {
    max-width: 75px;
    max-height: 65px;
}

.facebook-cloud-card .cloud-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.brand-card-flag-wrap {
    margin-bottom: 0.5rem;
}

.brand-card-flag {
    width: 2rem;
    height: 1.35rem;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.brand-card-country-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-color);
}

.brand-card-country-name {
    color: var(--text-color);
    font-weight: 500;
}

.brand-card-country-likes {
    font-weight: 600;
    color: var(--gold);
}

/* Country Cloud Cards */
.country-cloud-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.country-cloud-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.cloud-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.country-cloud-name {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.country-cloud-total {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.country-cloud-brands {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.country-brand-cloud {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.country-brand-cloud:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.brand-logo-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    flex: 1;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.brand-likes {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.country-brand-likes-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.country-brand-flag {
    width: 1.5rem;
    height: 1rem;
    object-fit: cover;
    border-radius: 2px;
}

.social-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.social-stat-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.social-icon {
    font-size: 4rem;
    color: #1877f2;
    margin-bottom: 1.5rem;
}

.social-stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-total {
    margin-bottom: 2rem;
}

.social-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.social-total span {
    color: var(--text-light);
    font-size: 1.1rem;
}

.social-pages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-page-item {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.social-page-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-total-item {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
}

.social-page-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.social-page-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.social-page-name {
    font-weight: 600;
}

.social-page-likes {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-page-link:hover .social-page-likes {
    color: var(--gold);
}

/* Facebook by Country */
.facebook-by-country {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.country-likes-header {
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.country-likes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.country-likes-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.country-likes-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.country-likes-name {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.country-likes-total {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.country-likes-total strong {
    color: var(--gold);
    font-size: 1.2rem;
}

.country-likes-brands {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.country-brand-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 5px;
    font-size: 0.95rem;
}

.country-brand-item span:first-child {
    color: var(--text-light);
}

.country-brand-item span:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* Accent Section - Breaking up gray/gold combination */
.accent-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 148, 31, 0.1) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.accent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.accent-text h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.accent-text p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.8;
}

.accent-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.accent-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: pulse-gold 3s ease-in-out infinite;
}

.accent-icon i {
    font-size: 4rem;
    color: white;
}

/* Timeline – Qualität seit 2005 */
.timeline-section .timeline-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.timeline-block {
    margin-bottom: 3rem;
}

.timeline-block:last-child {
    margin-bottom: 0;
}

.timeline-slogan {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin: 1.75rem 0 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.timeline-block-title {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1.25rem;
}

/* Horizontale Timeline: 3 vrstice – zgoraj (blagovne znamke) | na črti (datumi od 2005) | spodaj (države) */
.timeline-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.timeline-h-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.85rem;
}

.timeline-h-cell {
    flex: 0 0 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 1px;
}

.timeline-h-row-above {
    padding-bottom: 0.6rem;
}

.timeline-h-row-above .timeline-h-cell {
    align-items: flex-end;
    min-height: 2.8rem;
}

.timeline-h-above {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--text-color);
}

.timeline-h-above strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.timeline-h-row-line {
    position: relative;
    min-height: 4rem;
    align-items: center;
}

.timeline-h-line {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 2%, var(--gold) 98%, transparent 100%);
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(212, 175, 55, 0.2);
    pointer-events: none;
    z-index: 0;
}

.timeline-h-row-line .timeline-h-cell {
    position: relative;
    z-index: 1;
}

.timeline-h-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.timeline-h-year:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

.timeline-h-row-below {
    padding-top: 0.6rem;
}

.timeline-h-row-below .timeline-h-cell {
    align-items: flex-start;
    min-height: 2.2rem;
}

.timeline-h-below {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.3;
    color: var(--text-light);
}

.timeline-h-below .timeline-flag {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 18px;
    object-fit: cover;
    margin: 0 2px;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.timeline-h-below .timeline-flag:first-child {
    margin-left: 0;
}

.timeline-h-below .timeline-flag:last-child {
    margin-right: 0;
}

/* Pri 3 državah: 2 zgoraj, 1 na sredini spodaj */
.timeline-h-below:has(.timeline-flag:nth-child(3):last-child) {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 4px;
    width: min-content;
}
.timeline-h-below:has(.timeline-flag:nth-child(3):last-child) .timeline-flag {
    margin: 0;
}
.timeline-h-below:has(.timeline-flag:nth-child(3):last-child) .timeline-flag:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

/* Pri 4 državah: 2 zgoraj, 2 spodaj */
.timeline-h-below:has(.timeline-flag:nth-child(4):last-child) {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 4px;
    width: min-content;
}
.timeline-h-below:has(.timeline-flag:nth-child(4):last-child) .timeline-flag {
    margin: 0;
}

@media (max-width: 1020px) {
    .timeline-horizontal {
        padding: 1rem 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .timeline-h-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.5rem 0.75rem;
        min-width: max-content;
    }
    .timeline-h-cell {
        flex: 0 0 auto;
        min-width: 72px;
    }
    .timeline-h-line {
        display: block;
        left: 2%;
        right: 2%;
    }
    .timeline-h-year {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.75rem;
    }
    .timeline-h-above {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    .timeline-h-below {
        font-size: 0.7rem;
    }
}

@media (max-width: 767px) {
    .timeline-horizontal {
        padding: 0.75rem 0.25rem;
    }
    .timeline-h-row {
        gap: 0.4rem 0.5rem;
    }
    .timeline-h-cell {
        min-width: 60px;
    }
    .timeline-h-above {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    .timeline-h-below {
        font-size: 0.6rem;
    }
    .timeline-h-below .timeline-flag {
        width: 18px;
        height: 13px;
        margin: 0 1px;
    }
    .timeline-h-below:has(.timeline-flag:nth-child(4):last-child) .timeline-flag {
        width: 18px;
        height: 13px;
    }
    .timeline-h-year {
        width: 2rem;
        height: 2rem;
        font-size: 0.65rem;
    }
    .timeline-h-row-line {
        min-height: 3rem;
    }
}

.timeline-country-sub {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin: -0.5rem 0 1.25rem;
}

.timeline-countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.85rem;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-countries-grid .timeline-country {
    display: inline-block;
    padding: 0.45rem 1rem;
    background: rgba(255, 251, 240, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.timeline-countries-grid .timeline-country:hover {
    background: rgba(255, 251, 240, 1);
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

@keyframes pulse-gold {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    }
}

@media (max-width: 768px) {
    .accent-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .accent-text h2 {
        font-size: 2rem;
    }
}

/* Google Reviews Section */
.google-reviews {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.3);
}

/* IPO Group – Google + Trusted Shops: dva podolgovata kvadrata */
.reviews-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}
/* Skupna kartica: Google in Trusted Shops – enak izgled */
.reviews-card-same {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1.75rem;
    min-height: 220px;
    min-width: 200px;
    flex: 0 1 auto;
    max-width: 240px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.google-reviews-header.reviews-card-same { text-decoration: none; color: inherit; }
.trustedshops-card.reviews-card-same {
    text-decoration: none; color: inherit; cursor: pointer;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.trustedshops-card.reviews-card-same:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}
.trustedshops-logo { width: 72px; height: 72px; object-fit: contain; }
.google-reviews-header .google-logo { width: 72px; height: 72px; object-fit: contain; }
.trustedshops-kaeuferschutz,
.google-reviews-header .google-reviews-label {
    font-size: 0.8rem; font-weight: 600; color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0.25rem; width: 100%; text-align: center;
}
.trustedshops-stars,
.google-reviews-header .google-stars-large {
    display: flex; gap: 0.15rem; font-size: 1rem; color: #ff9f00;
}
.trustedshops-rating,
.google-reviews-header .google-rating-large {
    font-size: 1.5rem; font-weight: 700; color: var(--text-color);
}
.trustedshops-label-text,
.google-reviews-header .google-rating-word {
    font-size: 0.9rem; font-weight: 600; color: var(--text-color);
}
.trustedshops-date,
.google-reviews-header .google-reviews-date {
    font-size: 0.7rem; color: var(--text-light);
}

.btn-write-review {
    background: #1a73e8;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-write-review:hover {
    background: #1557b0;
    transform: translateY(-2px);
}

.google-reviews-by-brand {
    margin-bottom: 3rem;
}
.brand-reviews-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    text-align: center;
}
.brand-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}
.brand-review-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.brand-review-card-logo {
    max-height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
.brand-review-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}
.brand-review-card-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
}
.brand-review-card-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}
.brand-review-card-stars {
    display: flex;
    gap: 0.15rem;
    font-size: 1rem;
    color: #fbbc04;
}
.brand-review-card-count {
    font-size: 0.9rem;
    color: var(--text-light);
}
.brand-review-card-na {
    font-size: 1rem;
    color: var(--text-light);
}
.btn-brand-write-review {
    display: inline-block;
    background: #1a73e8;
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}
.btn-brand-write-review:hover {
    background: #1557b0;
    transform: translateY(-2px);
}
.google-reviews-carousel-wrap {
    margin-bottom: 2rem;
}
.reviews-comments-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.google-reviews-main {
    display: block;
    margin-bottom: 2rem;
}

/* Summary Card */
.google-summary-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.summary-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-rating-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: #333;
}

.summary-stars {
    display: flex;
    gap: 0.2rem;
    font-size: 1.5rem;
    color: #fbbc04;
}

.summary-count {
    color: #5f6368;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.summary-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-leave-review {
    background: #1a73e8;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-leave-review:hover {
    background: #1557b0;
}

.btn-see-google {
    background: #f1f3f4;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-see-google:hover {
    background: #e8eaeb;
}

.summary-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #e8eaeb;
}

.summary-footer p {
    color: #5f6368;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.verified-badge {
    color: #1a73e8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Reviews Carousel */
.google-reviews-carousel {
    position: relative;
    overflow: hidden;
}

.reviews-carousel-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel-container::-webkit-scrollbar {
    display: none;
}

.google-review-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    color: #333;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.review-date {
    color: #5f6368;
    font-size: 0.85rem;
}

.review-card-logos {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}
.review-card-logos .google-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.review-logo-sep {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1;
    flex-shrink: 0;
}
.review-card-brand-logo {
    height: 24px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.google-icon {
    width: 24px;
    height: 24px;
}

.review-stars {
    display: flex;
    gap: 0.15rem;
    font-size: 1rem;
    color: #fbbc04;
    margin-bottom: 1rem;
}

.review-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.review-read-more {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
}

.review-read-more:hover {
    text-decoration: underline;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #5f6368;
}

/* Country Specific Reviews */
.google-reviews-by-country {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.country-reviews-title {
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.country-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.country-review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.country-review-card:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.country-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.country-flag {
    font-size: 2rem;
}

.country-review-info h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.country-review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-rating-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.country-rating-stars {
    display: flex;
    gap: 0.1rem;
    color: #fbbc04;
    font-size: 0.9rem;
}

.country-rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.country-brands-reviews {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
}

.brand-review-name {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-review-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.brand-review-name span {
    color: var(--text-color);
    font-weight: 600;
}

.brand-review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-review-rating .rating-value {
    color: var(--gold);
    font-weight: 700;
}

.brand-review-rating .rating-stars {
    color: #fbbc04;
    font-size: 0.8rem;
    margin: 0;
}

.brand-review-rating .rating-count {
    color: var(--text-color);
    font-size: 0.8rem;
}

/* Featured Review in Country Card */
.country-featured-review {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.featured-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.featured-reviewer {
    font-weight: 600;
    color: var(--text-color);
}

.featured-review-stars {
    color: #fbbc04;
    font-size: 0.8rem;
}

.featured-review-text {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .google-reviews-main {
        grid-template-columns: 1fr;
    }
    
    .google-summary-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        gap: 0.8rem;
        min-width: 0;
        max-width: 100%;
    }
    .trustedshops-card {
        min-width: 180px;
    }
    
    .summary-buttons {
        flex-direction: column;
    }
    
    .google-review-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .country-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* YouTube Section */
.youtube-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
    display: block !important;
    visibility: visible !important;
}

.youtube-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.youtube-filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.youtube-filter-btn:hover,
.youtube-filter-btn.active {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.youtube-category {
    margin-bottom: 4rem;
}

.youtube-category:last-child {
    margin-bottom: 0;
}

.youtube-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.youtube-category-title i {
    font-size: 2rem;
}

.youtube-category-title .fa-youtube {
    color: #ff0000;
}

.youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
}
.youtube-videos-grid.youtube-videos-grid--limit-8 .youtube-video-link:nth-child(n+9) {
    display: none;
}
.youtube-videos-grid.youtube-videos-grid--limit-3-mobile .youtube-video-link:nth-child(n+4) {
    display: none;
}
.youtube-see-more-wrap {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.youtube-see-more-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.youtube-see-more-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.youtube-video-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.youtube-video-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.youtube-thumbnail-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.youtube-embed-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.youtube-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-embed-container .brand-badge,
.youtube-embed-container .partner-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-video-card:hover .youtube-thumbnail {
    transform: scale(1.05);
}

.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.youtube-play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.youtube-video-card:hover .youtube-play-btn {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-video-info {
    padding: 0.75rem 1rem;
}

.youtube-video-brand {
    display: none; /* Hide brand below thumbnail - already shown on thumbnail */
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.youtube-video-brand img {
    height: 16px;
    width: auto;
}

.youtube-video-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0.25rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.youtube-video-meta {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    color: var(--text-color);
    font-size: 0.85rem;
}

.youtube-video-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.youtube-video-views i {
    color: var(--gold);
}

.youtube-video-channel {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.youtube-video-channel i {
    color: #ff0000;
}

.youtube-country-badge {
    display: none; /* Hide old badge - replaced by circle */
}

/* Country flag on thumbnail – same logic as main menu (flagcdn img + emoji fallback) */
.youtube-country-flag-topright {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
}
.youtube-country-flag-rect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.youtube-country-flag-rect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.youtube-country-flag-rect .flag-emoji.flag-fallback {
    font-size: 0.75rem;
    line-height: 1;
}
.youtube-video-date {
    color: var(--text-muted, #666);
}

.brand-logo-badge {
    height: 24px;
    max-width: 80px;
    object-fit: contain;
    background: rgba(212, 175, 55, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.youtube-video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Partner badge */
.partner-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

/* Brand badge */
.brand-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(212, 175, 55, 0.95);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive YouTube grid */
@media (max-width: 1024px) {
    .youtube-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .youtube-videos-grid {
        grid-template-columns: 1fr;
    }
    .youtube-videos-grid.youtube-videos-grid--limit-3-mobile .youtube-video-link:nth-child(n+4) {
        display: none;
    }
    .youtube-category-title {
        font-size: 1.4rem;
    }
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 200px;
    transition: var(--transition);
}

.badge-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.badge-item i {
    font-size: 4rem;
    color: var(--gold);
}

.badge-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Customer Priority Section */
.customer-priority {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.priority-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.priority-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.priority-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.priority-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.priority-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.product-badge.bestseller {
    background: var(--accent-color);
    color: var(--dark-bg);
}

.product-badge.amazon {
    background: var(--gold-dark);
    color: var(--white);
}

.product-image {
    width: 100%;
    height: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-image i {
    font-size: 5rem;
    color: var(--gold);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.product-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.product-link:hover {
    background: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 148, 31, 0.15));
    color: var(--text-color);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gold);
    background: rgba(26, 26, 26, 0.8);
    color: var(--gold);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-color);
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-source {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gold);
    color: var(--dark-bg);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-card-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.blog-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.blog-loading i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.blog-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: #ffebee;
    color: #c62828;
    border-radius: 10px;
    border-left: 4px solid #c62828;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.3);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.contact .section-header {
    margin-bottom: 3rem;
}

.contact .section-header p {
    color: var(--text-color);
    font-size: 1.15rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-item:hover {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.35);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.contact-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.35rem 0;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-item a,
.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c2c2c;
    margin: 0;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-social .social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-right: 0.25rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.15rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fafafa;
    color: var(--text-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: #fff;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    border-radius: 8px;
}

/* Career Section */
.career {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 148, 31, 0.15));
    color: var(--text-color);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.career-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.career-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: rgba(240, 240, 240, 0.8);
    color: var(--text-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-phones {
    margin: 0.5rem 0 1rem;
    padding-left: 0;
}
.footer-phones li {
    margin-bottom: 0.35rem;
}
.footer-phone-brand {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.85em;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid.brands-single-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .europe-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        padding: 1rem;
    }
    
    .europe-svg {
        max-height: 400px;
    }
    
    .country-marker {
        r: 20 !important; /* Larger touch targets on mobile */
    }
    
    .country-info {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        max-width: 100% !important;
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .europe-map-background {
        opacity: 0.2;
    }
    
    .facebook-cloud-card {
        min-height: 250px;
    }
    
    .facebook-brands-grid {
        grid-template-columns: 1fr;
    }
    
    .country-info-content h3 {
        font-size: 1.5rem;
    }
    
    .country-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .europe-map-container {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid.brands-single-row {
        grid-template-columns: 1fr;
    }

    .priority-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .blog-filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .blog-card-image {
        height: 150px;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .live-metrics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .live-metric-card {
        padding: 2rem;
    }
    
    .live-metric-number {
        font-size: 3rem;
    }
    
    .live-metric-icon {
        font-size: 3rem;
    }
    
    /* Mobile touch optimizations */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px; /* Minimum touch target size */
    }
    
    .nav-menu a {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Better mobile spacing */
    section {
        padding: 3rem 0;
    }
}
