/* Reset i osnovni stilovi */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #FCF8F3 !important;
}

body {
    background-color: #FCF8F3 !important;
}

:root {
    color-scheme: light;
    --primary-color: #01672f;    /* Tamno zelena */
    --text-accent: rgb(0, 127, 92);  /* Zelena za naslove i tekst */
    --secondary-color: #fca72d;  /* Narandzasta */
    --accent-color: #a1cd16;     /* Svetlo zelena */
    --text-color: #000000;       /* Crna */
    --bg-color: #FCF8F3;         /* Zorina Mast pozadina */
    --hero-title-color: #697a3f; /* Naslov Polkin Melem */
    --hero-text-color: #444444;  /* Tekst ispod naslova */
    --section-heading-color: #444444; /* Naslovi sekcija */
    --description-bg: #ffffff;   /* Background opisa */
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Fontovi */
    --font-display: 'Montserrat', sans-serif;
    --font-elegant: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-serif: 'Lora', serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
    padding-top: 0;
    padding-bottom: 0;
}

/* Header i navigacija - safe area padding da sadržaj ne ide ispod notcha */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

nav {
    padding: 0.5rem 0;
    min-height: 2rem;
}

nav .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 2rem;
}

/* Hamburger dugme - lijevi gornji ugao */
.nav-menu-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-menu-btn[aria-expanded="true"] {
    transform: translateY(-50%);
}

.nav-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--hero-title-color);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu-btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

.nav-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Overlay kad je meni otvoren */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 199;
}

.nav-overlay[aria-hidden="false"] {
    display: block;
}

/* Drawer meni - narandžasta prljava pozadina */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    padding: calc(4rem + env(safe-area-inset-top, 0px)) env(safe-area-inset-right, 0px) calc(1.5rem + env(safe-area-inset-bottom, 0px)) max(1.5rem, env(safe-area-inset-left, 0px));
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.nav-drawer.open {
    transform: translateX(0);
}

.nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    color: #2d1f0a;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #1a1206;
}

.language-switcher {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

.lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-trigger:hover {
    background: rgba(255, 255, 255, 1);
}

.lang-arrow {
    font-size: 0.6rem;
    opacity: 0.9;
    display: inline-block;
    transition: transform 0.2s ease;
}

.language-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 110px;
    overflow: hidden;
    z-index: 1001;
}

.language-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border: none;
    background: none;
    color: var(--text-color);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lang-option:hover {
    background: var(--bg-color);
}

.lang-option.active {
    background: rgba(1, 103, 47, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero sekcija */
.hero {
    background: transparent;
    color: var(--hero-text-color);
    padding: 1rem 0 2rem;
    text-align: center;
}

.hero h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--hero-title-color);
}

.hero p,
.hero .hero-subtitle,
.hero .hero-uses,
.hero .hero-description,
.hero .hero-ingredients {
    color: var(--hero-text-color);
}

.hero p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.hero .hero-subtitle {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero .hero-uses {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .hero-ingredients {
    font-size: 1rem;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Carousel + O nama – na velikim ekranima jedna pored druge */
.carousel-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
}

@media (min-width: 900px) {
    .carousel-about-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .carousel-about-wrapper .carousel-section {
        flex: 0 0 380px;
        min-width: 0;
    }

    .carousel-about-wrapper .about {
        flex: 1;
        min-width: 0;
        margin: 0;
    }

    .carousel-about-wrapper .about .container {
        max-width: none;
        padding: 0;
    }

    .carousel-about-wrapper .carousel-container {
        max-width: none;
        padding: 0 2rem;
    }
}

/* Carousel sekcija – jedna slika, strelice, tačkice */
.carousel-section {
    padding: 0.5rem 0;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
    line-height: 1;
    color: #444444;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.carousel-arrow:hover:not(:disabled) {
    background: #ffffff;
    opacity: 0.95;
}

.carousel-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-arrow-prev {
    left: 0.5rem;
}

.carousel-arrow-next {
    right: 0.5rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.carousel-dot:hover {
    opacity: 0.9;
}

.carousel-dot.active {
    background: #666666;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 2.5rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .carousel-arrow-prev {
        left: 0.25rem;
    }

    .carousel-arrow-next {
        right: 0.25rem;
    }

    .carousel-item {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 2rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .carousel-item {
        min-height: 160px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: rgb(0, 127, 92);
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.2s ease;
    line-height: 1;
    padding: 0 10px;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.lightbox-title {
    color: rgb(0, 127, 92);
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 35px;
    }
}

/* Scroll offset za fixed header */
#pocetak, #o-nama, #galerija, #zadovoljni-klijenti, #gdje-kupiti, #kontakt, #nas-proizvod {
    scroll-margin-top: 3.5rem;
}

/* Sekcije */
section {
    padding: 3rem 0;
}

section.gallery-section,
section.clients-section,
section.product-section,
section.retail-locations,
section.about,
section.stats-row {
    background: transparent;
    margin: 0.75rem 0;
}

/* Slika puna širina – direktno na osnovnoj pozadini stranice */
.brand-image-section {
    padding: 0;
    margin: 0.75rem 0;
    width: 100%;
    background: var(--bg-color);
}

.brand-image-section .brand-image-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.brand-image-full {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.brand-image-caption {
    padding: 1rem max(20px, env(safe-area-inset-left, 0)) 0 max(20px, env(safe-area-inset-right, 0));
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--hero-text-color);
    text-align: center;
}

.collapsible-section .collapsible-toggle {
    font-size: 1.35rem;
    color: var(--section-heading-color);
    text-align: center;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
}

.collapsible-section .collapsible-toggle:hover {
    opacity: 0.9;
}

.collapsible-section .collapsible-chevron {
    font-size: 1em;
    margin-left: 0.3em;
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--section-heading-color);
}

.collapsible-section.open .collapsible-chevron {
    transform: rotate(-180deg);
}

.collapsible-section .collapsible-content {
    display: none;
    min-height: 200px;
    background: var(--description-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.collapsible-section.open .collapsible-content {
    display: block;
}

/* Galerija – collapsible, klik otvara carousel */
.gallery-section .collapsible-content {
    padding: 1rem 0;
    background: transparent;
    min-height: 0;
}

.gallery-section .collapsible-content:empty {
    min-height: 80px;
}

/* Galerija – carousel, jedna slika 16:9 horizontalno */
.gallery-carousel-section .collapsible-toggle {
    font-size: 1.35rem;
    color: var(--section-heading-color);
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.gallery-carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.gallery-carousel-item {
    flex: 0 0 100%;
    width: 100%;
    cursor: pointer;
}

.gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 9;
}

.gallery-carousel-prev,
.gallery-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
    line-height: 1;
    color: #444444;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.gallery-carousel-prev:hover:not(:disabled),
.gallery-carousel-next:hover:not(:disabled) {
    background: #ffffff;
    opacity: 0.95;
}

.gallery-carousel-prev:disabled,
.gallery-carousel-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gallery-carousel-prev {
    left: 0.5rem;
}

.gallery-carousel-next {
    right: 0.5rem;
}

.gallery-carousel-empty-wrap {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-carousel-empty {
    color: #4a5568;
    text-align: center;
}

/* Naš proizvod – 8 fotografija u gridu, 1:1, na telefonu 2 kolone */
.product-section {
    margin: 0.75rem 0;
}

.product-section h2 {
    font-size: 1.35rem;
    color: var(--section-heading-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.product-image-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.product-image-wrap {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.product-section .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 600px) {
    .product-image-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 900px) {
    .product-image-grid {
        padding: 0 2rem;
    }
}

/* Zadovoljni klijenti – carousel, jedna slika 1:1 */
.clients-carousel-section h2 {
    font-size: 1.35rem;
    color: var(--section-heading-color);
    text-align: center;
    margin-bottom: 1rem;
}

.clients-carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.clients-carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1 / 1;
}

.clients-carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.clients-carousel-item {
    flex: 0 0 100%;
    width: 100%;
    cursor: pointer;
}

.clients-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}

.clients-carousel-prev,
.clients-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
    line-height: 1;
    color: #444444;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.clients-carousel-prev:hover:not(:disabled),
.clients-carousel-next:hover:not(:disabled) {
    background: #ffffff;
    opacity: 0.95;
}

.clients-carousel-prev:disabled,
.clients-carousel-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.clients-carousel-prev {
    left: 0.5rem;
}

.clients-carousel-next {
    right: 0.5rem;
}

.clients-carousel-empty-wrap {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.clients-carousel-empty {
    color: #4a5568;
    text-align: center;
}

/* Responsive za galeriju i klijente carousel */
@media (max-width: 768px) {
    .gallery-carousel-container,
    .clients-carousel-container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-carousel-container,
    .clients-carousel-container {
        padding: 0 2rem;
    }
}

/* Stats row – tri broja horizontalno (100%, 4.9/5, 100+) */
.stats-row {
    padding: 0 1rem;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.5rem;
}

.stats-row .stat-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.35rem;
}

.stats-row .stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #697a3f;
    line-height: 1.2;
}

.stats-row .stat-label {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.35;
    margin-top: 0.35rem;
    max-width: 100%;
    word-wrap: break-word;
}

@media (min-width: 480px) {
    .stats-row .stat-number {
        font-size: 1.75rem;
    }
    .stats-row .stat-label {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .stats-inner {
        gap: 1rem;
    }
    .stats-row .stat-item {
        padding: 1rem 0.5rem;
    }
    .stats-row .stat-number {
        font-size: 2rem;
    }
    .stats-row .stat-label {
        font-size: 1rem;
    }
}

.retail-locations h2 {
    font-size: 1.35rem;
    color: var(--section-heading-color);
    text-align: center;
    margin-bottom: 2rem;
}

.retail-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Svaki grad ima svoju karticu - odvojeni, vizuelno razdvojeni */
.retail-city-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.retail-city-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.retail-city-card.expanded {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.retail-city-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.retail-city-trigger:hover {
    background: rgba(1, 103, 47, 0.06);
}

.retail-city-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.retail-city-country {
    font-weight: 500;
    color: #4a5568;
    font-size: 0.95em;
}

.retail-city-chevron {
    font-size: 0.85em;
    color: #718096;
    transition: transform 0.25s ease;
}

.retail-city-card.expanded .retail-city-chevron {
    transform: rotate(-180deg);
}

.retail-city-details {
    padding: 0 1.25rem 1rem;
    background: #f8fafc;
}

.retail-city-details .retail-item {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
}

.retail-city-details .retail-item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.retail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
    background: transparent;
}

.retail-city-card .retail-item {
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.retail-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.retail-city {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.retail-address {
    font-size: 0.9rem;
    color: #4a5568;
}

.retail-map-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 0.25rem;
    display: inline-block;
}

.retail-map-link:hover {
    text-decoration: underline;
}

.retail-uklonjena {
    color: #e53e3e;
    font-style: italic;
}

.retail-empty {
    color: var(--text-accent);
    text-align: center;
}

section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--section-heading-color);
    font-weight: 700;
    position: relative;
}

/* About sekcija - nova struktura */
.about .container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about .about-block-title {
    font-family: var(--font-serif);
    color: var(--section-heading-color);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    text-align: center;
}

.about .about-block-title:first-child {
    margin-top: 0;
}

.about .about-block-title.retail-section-title {
    margin-top: 2.5rem;
}

.about .about-block {
    text-align: left;
    font-size: 1.05rem;
    color: var(--hero-text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    background: var(--description-bg);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.about .about-block p {
    margin-bottom: 1rem;
}

.about .about-block p:last-child {
    margin-bottom: 0;
}

.about .about-block-expandable p:last-child {
    margin-bottom: 0;
}

.about .about-read-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--hero-title-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.about .about-read-more:hover {
    opacity: 0.8;
}

.about .about-block ul {
    margin: 0.75rem 0 1rem 1.5rem;
    padding: 0;
}

.about .about-block li {
    margin-bottom: 0.5rem;
}

.about .about-block-checklist .about-checklist {
    list-style: none;
    margin-left: 0;
}

.about .about-block-checklist .about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.about .about-check {
    color: var(--secondary-color);
    font-weight: bold;
    flex-shrink: 0;
}

/* Closing tagline sekcija */
.closing-tagline {
    padding: 3rem 0;
    text-align: center;
}

.closing-text {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hero-title-color);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

/* Footer – bee.png kao background, bijela pozadina, dno slike = dno footera */
footer {
    position: relative;
    overflow: hidden;
    color: #444444;
    padding: 2rem 0;
    padding-bottom: calc(10% + env(safe-area-inset-bottom, 0px));
    text-align: center;
    background-color: #ffffff;
    background-image: url('images/bee.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

footer .container {
    position: relative;
    z-index: 1;
    background: transparent;
}

.footer-contact {
    max-width: 700px;
    margin: 0 auto 2rem;
    background: transparent;
    color: var(--section-heading-color);
}

.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-details {
    text-align: left;
    display: inline-block;
    background: transparent;
    font-weight: bold;
}

.footer-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.footer-details a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(68, 68, 68, 0.5);
}

.footer-details a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.9;
    background: transparent;
}

/* Admin - sprečava prekoračenje viewport širine */
html.admin-dashboard-page,
html.admin-dashboard-page body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsivnost – telefon */
@media (max-width: 768px) {
    section {
        padding: 0.75rem 0;
    }

    section.gallery-section,
    section.clients-section,
    section.retail-locations,
    section.about,
    section.stats-row,
    section.brand-image-section {
        margin: 0.4rem 0;
    }

    .hero {
        padding: 0.75rem 0 0.5rem;
    }

    .hero h2 {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .hero p {
        margin-bottom: 0.5rem;
    }

    .hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero .hero-uses {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .carousel-section {
        padding: 0.25rem 0;
    }

    .carousel-about-wrapper {
        padding-top: 0;
        padding-bottom: 0;
    }

    .about .about-block-title {
        font-size: 1.3rem;
        margin: 1.25rem 0 0.6rem;
    }

    .about .about-block-title:first-child {
        margin-top: 0;
    }

    .about .about-block-title.retail-section-title {
        margin-top: 1.25rem;
    }

    .about .about-block {
        margin-bottom: 0.6rem;
        padding: 0.75rem 1rem;
    }

    .stats-row {
        padding: 0 1rem;
    }

    .stats-row .stat-item {
        padding: 0.5rem 0.25rem;
    }

    .retail-locations h2 {
        margin-bottom: 1rem;
    }

    .collapsible-section .collapsible-toggle {
        margin-bottom: 0.6rem;
    }

    .collapsible-section .collapsible-content {
        padding: 1rem;
    }

    .closing-tagline {
        padding: 1.5rem 0;
    }

    .closing-text {
        font-size: 1.2rem;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
}
