 /* ================================================================
   KRIPTON NAUTICA — DESIGN TOKENS
   ================================================================ */
 :root {
     --navy-900: #060E19;
     --navy-800: #0B1D33;
     --navy-700: #132B4A;
     --navy-600: #1A3A5C;
     --gold-500: #C8A96E;
     --gold-400: #D4B97E;
     --gold-300: #E8D5A8;
     --gold-200: #F2E8D0;
     --blue-600: #1E5A8A;
     --blue-500: #2E6B9E;
     --blue-400: #4A90C4;
     --blue-300: #7EB3D8;
     --blue-200: #B8D6EC;
     --blue-100: #D4E6F5;
     --blue-50: #EDF4FA;
     --white: #FFFFFF;
     --gray-50: #F7F8FA;
     --gray-100: #F0F2F5;
     --gray-200: #E2E5EA;
     --gray-300: #C8CDD5;
     --gray-400: #A0A7B4;
     --gray-500: #7A8494;
     --gray-600: #5A6373;
     --gray-700: #3D4555;
     --gray-800: #262C38;
     --gray-900: #1A1E28;
     --success: #2D8A56;
     --warning: #C0862B;
     --error: #C0392B;
     --font-display: 'Playfair Display', Georgia, serif;
     /*--font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;*/
     --font-body: 'Manrope', sans-serif;
     --font-mono: 'JetBrains Mono', 'Consolas', monospace;
     --radius-sm: 4px;
     --radius-md: 8px;
     --radius-lg: 12px;
     --radius-xl: 16px;
     --radius-full: 9999px;
     --shadow-sm: 0 1px 3px rgba(11, 29, 51, 0.06), 0 4px 8px rgba(11, 29, 51, 0.03);
     --shadow-md: 0 2px 6px rgba(11, 29, 51, 0.06), 0 8px 20px rgba(11, 29, 51, 0.04);
     --shadow-lg: 0 4px 12px rgba(11, 29, 51, 0.08), 0 20px 40px rgba(11, 29, 51, 0.06);
     --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
     --ease-out: cubic-bezier(0, 0, 0.25, 1);
 }

 *,
 *::before,
 *::after {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     scroll-behavior: smooth
 }

 body {
     font-family: var(--font-body);
     font-size: 15px;
     color: var(--gray-800);
     background: var(--gray-50);
     line-height: 1.65;
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden
 }

 img,
 svg {
     display: block;
     max-width: 100%;
     height: auto
 }

 a {
     color: var(--blue-500);
     text-decoration: none;
     transition: color 150ms var(--ease)
 }

 a:hover {
     color: var(--blue-600)
 }

 button {
     font-family: inherit;
     cursor: pointer
 }

 /* ── Container ── */
 /*.container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px
 }

 .container--narrow {
     max-width: 880px
 }*/

 /* ── Utility ── */
 .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0
 }

 /* ================================================================
   TOPBAR
   ================================================================ */
 .topbar {
     background: var(--navy-900);
     padding: 8px 0;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.45)
 }

 .topbar__inner {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 24px
 }

 .topbar a {
     color: rgba(255, 255, 255, 0.45);
     display: inline-flex;
     align-items: center;
     gap: 6px;
     transition: color 150ms
 }

 .topbar a:hover {
     color: #fff
 }

 .topbar__sep {
     width: 1px;
     height: 12px;
     background: rgba(255, 255, 255, 0.1)
 }

 /* ================================================================
   NAVIGATION
   ================================================================ */
 .nav {
     position: sticky;
     top: 0;
     z-index: 100;
     background: var(--white);
     border-bottom: 1px solid var(--gray-200);
     transition: box-shadow 250ms var(--ease), height 250ms var(--ease);

     backdrop-filter: blur(8px);
     background: rgba(255, 255, 255, 0.96);
 }



 .nav--scrolled {
     box-shadow: var(--shadow-md);

     backdrop-filter: blur(14px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
 }

 .nav__inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 80px;
     transition: height 250ms var(--ease)
 }

 .nav--scrolled .nav__inner {
     height: 60px
 }

 .nav__logo {
     display: flex;
     align-items: center;
     height: 100%;
 }

 .nav__logo img {
     height: 60px;
     width: auto;
     display: block;
     transition: transform 250ms var(--ease);
 }

 .nav__logo:hover img {
     transform: scale(1.03);
 }

 .nav__links {
     display: flex;
     align-items: center;
     gap: 4px;
     list-style: none;
     margin-bottom: 0;
 }

 /*.nav__link {
     padding: 8px 16px;
     font-size: 13px;
     font-weight: 500;
     color: var(--gray-600);
     text-decoration: none;
     border-radius: var(--radius-sm);
     transition: all 150ms var(--ease);
     position: relative;
 }

 .nav__link:hover {
     color: var(--navy-800);
     background: var(--gray-100)
 }

 .nav__link--active {
     color: var(--navy-800)
 }

 .nav__link--active::after {
     content: '';
     position: absolute;
     left: 16px;
     right: 16px;
     bottom: -8px;
     height: 2px;
     background: var(--navy-800);
     border-radius: 2px;
 }*/

 /* Base link */
 .nav__link {
     position: relative;
     padding: 8px 18px;
     font-weight: 600;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     font-size: 14px;
     color: var(--gray-600);
     transition: color 200ms var(--ease);
 }

 /* Hover color */
 .nav__link:hover {
     color: var(--navy-800);
 }

 /* Animated underline */
 .nav__link::after {
     content: "";
     position: absolute;
     left: 16px;
     right: 16px;
     bottom: -4px;
     height: 2px;
     background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 250ms var(--ease);
 }

 /* Hover animation */
 .nav__link:hover::after {
     transform: scaleX(1);
 }

 /* Active state */
 .nav__link--active {
     color: var(--navy-800);
 }

 .nav__link--active::after {
     transform: scaleX(1);
 }

 /*.nav__link--dropdown::after {
     content: ' ▾';
     font-size: 10px;
     opacity: 0.35
 }*/

 .nav__link--dropdown {
     display: inline-flex;
     align-items: center;
     gap: 6px;
 }

 .nav__link--dropdown::after {
     content: '';
     width: 6px;
     height: 6px;
     border-right: 2px solid currentColor;
     border-bottom: 2px solid currentColor;
     transform: rotate(45deg);
     margin-top: -2px;
     opacity: .6;
     transition: transform 200ms var(--ease);
 }

 .nav__link--dropdown:hover::after {
     transform: rotate(225deg);
 }



 .nav__actions {
     display: flex;
     align-items: center;
     gap: 12px;
     flex-shrink: 0
 }

 .nav__search {
     width: 40px;
     height: 40px;
     border-radius: var(--radius-full);
     border: 1px solid var(--gray-200);
     background: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gray-500);
     transition: all 150ms;
     font-size: 16px
 }

 .nav__search:hover {
     border-color: var(--navy-800);
     color: var(--navy-800)
 }

 .nav__burger {
     display: none;
     width: 40px;
     height: 40px;
     align-items: center;
     justify-content: center;
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-sm);
     background: none;
     font-size: 18px;
     color: var(--navy-800)
 }

 /* Mega Dropdown */
 /*.mega {
     position: absolute;
     top: 100%;
     left: 0;
     right: 0;
     background: var(--white);
     border-top: 1px solid var(--gray-200);
     box-shadow: var(--shadow-lg);
     padding: 32px 0;
     opacity: 0;
     pointer-events: none;
     transform: translateY(-8px);
     transition: all 250ms var(--ease);
     z-index: 90
 }

 .mega--open {
     opacity: 1;
     pointer-events: auto;
     transform: translateY(0)
 }*/

 .mega {
     position: absolute;
     top: calc(100% + 18px);
     left: 50%;
     transform: translateX(-50%) translateY(-10px);
     width: 1000px;
     max-width: 95%;
     background: var(--white);
     border-radius: 22px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
     padding: 40px;
     opacity: 0;
     pointer-events: none;
     transition: all 300ms var(--ease);
 }

 .mega--open {
     opacity: 1;
     pointer-events: auto;
     transform: translateX(-50%) translateY(0);
 }

 .mega__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px
 }

 .mega__item {
     display: flex;
     gap: 16px;
     padding: 16px;
     border-radius: var(--radius-md);
     text-decoration: none;
     color: var(--gray-800);
     transition: background 150ms
 }

 .mega__item:hover {
     background: var(--gray-100);
     color: var(--gray-800)
 }

 .mega__icon {
     width: 48px;
     height: 48px;
     border-radius: var(--radius-md);
     background: var(--blue-50);
     color: var(--blue-500);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     flex-shrink: 0;
     transition: all 250ms var(--ease)
 }

 .mega__item:hover .mega__icon {
     background: var(--navy-800);
     color: var(--gold-500)
 }

 .mega__label {
     font-weight: 600;
     font-size: 14px;
     margin-bottom: 2px
 }

 .mega__desc {
     font-size: 12px;
     color: var(--gray-500);
     line-height: 1.4
 }

 @media(max-width:1024px) {
     .nav__links {
         display: none
     }

     .nav__burger {
         display: flex
     }

     .mega__grid {
         grid-template-columns: 1fr 1fr
     }
 }

 @media(max-width:640px) {
     .mega__grid {
         grid-template-columns: 1fr
     }
 }

 /* Mobile menu overlay */
 .mobile-menu {
     position: fixed;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     z-index: 999;
     background: var(--white);
     padding: 24px;
     transform: translateX(100%);
     transition: transform 350ms var(--ease-out);
     display: flex;
     flex-direction: column;
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
 }

 .mobile-menu--open {
     transform: translateX(0)
 }

 .mobile-menu__header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 32px
 }

 .mobile-menu__close {
     width: 40px;
     height: 40px;
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-sm);
     background: none;
     font-size: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--gray-700)
 }

 .mobile-menu__links {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 4px
 }

 .mobile-menu__link {
     display: block;
     padding: 14px 16px;
     font-size: 17px;
     font-weight: 500;
     color: var(--navy-800);
     border-radius: var(--radius-md);
     text-decoration: none;
     transition: background 150ms
 }

 .mobile-menu__link:hover {
     background: var(--gray-100);
     color: var(--navy-800)
 }

 .mobile-menu__cta {
     margin-top: auto;
     padding-top: 24px;
     border-top: 1px solid var(--gray-200)
 }

 /* ================================================================
   BUTTONS
   ================================================================ */
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 12px 28px;
     font-family: var(--font-body);
     font-size: 13px;
     font-weight: 600;
     line-height: 1;
     border-radius: var(--radius-sm);
     border: 2px solid transparent;
     transition: all 250ms var(--ease);
     text-decoration: none;
     white-space: nowrap;
     min-height: 44px
 }

 .btn--primary {
     background: var(--gold-500);
     color: var(--navy-800);
     border-color: var(--gold-500)
 }

 .btn--primary:hover {
     background: var(--gold-400);
     border-color: var(--gold-400);
     transform: translateY(-1px);
     box-shadow: 0 4px 16px rgba(200, 169, 110, 0.35);
     color: var(--navy-800)
 }

 .btn--secondary {
     background: var(--navy-800);
     color: var(--white);
     border-color: var(--navy-800)
 }

 .btn--secondary:hover {
     background: var(--navy-700);
     border-color: var(--navy-700);
     transform: translateY(-1px);
     box-shadow: var(--shadow-md);
     color: var(--white)
 }

 .btn--ghost {
     background: transparent;
     color: var(--navy-800);
     border-color: var(--gray-300)
 }

 .btn--ghost:hover {
     border-color: var(--navy-800);
     color: var(--navy-800)
 }

 .btn--ghost-light {
     background: transparent;
     color: var(--white);
     border-color: rgba(255, 255, 255, 0.2)
 }

 .btn--ghost-light:hover {
     border-color: rgba(255, 255, 255, 0.5);
     color: var(--white)
 }

 .btn--sm {
     padding: 8px 18px;
     font-size: 12px;
     min-height: 36px
 }

 .btn--lg {
     padding: 16px 36px;
     font-size: 15px;
     min-height: 52px
 }

 .btn--block {
     width: 100%
 }

 /* ================================================================
   HERO
   ================================================================ */
 .hero {
     position: relative;
     min-height: 92vh;
     display: flex;
     align-items: center;
     overflow: hidden;
     background: var(--navy-800)
 }

 .hero__bg {
     position: absolute;
     inset: 0;
     background: url('../img/nautica-bg.jpg') center 50%/cover no-repeat;
     opacity: 0.3
 }

 .hero__overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(140deg, rgba(6, 14, 25, 0.94) 0%, rgba(11, 29, 51, 0.7) 45%, rgba(11, 29, 51, 0.88) 100%)
 }

 /* Subtle texture grain */
 .hero__overlay::after {
     content: '';
     position: absolute;
     inset: 0;
     opacity: 0.03;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E")
 }

 .hero__content {
     position: relative;
     z-index: 2;
     max-width: 700px;
     padding: 120px 0 100px
 }

 .hero__overline {
     font-family: var(--font-mono);
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: var(--gold-500);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px
 }

 .hero__overline::before {
     content: '';
     width: 32px;
     height: 1px;
     background: var(--gold-500);
     opacity: 0.5
 }

 .hero__title {
     font-family: var(--font-display);
     font-size: clamp(36px, 5.5vw, 62px);
     font-weight: 600;
     line-height: 1.08;
     letter-spacing: -0.02em;
     color: var(--white);
     margin-bottom: 24px
 }

 .hero__title em {
     font-style: normal;
     color: var(--gold-500)
 }

 .hero__subtitle {
     font-size: 17px;
     color: rgba(255, 255, 255, 0.55);
     line-height: 1.7;
     max-width: 520px;
     margin-bottom: 40px
 }

 .hero__actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap
 }

 /* Decorative compass element */
 .hero__compass {
     position: absolute;
     right: 8%;
     bottom: 15%;
     z-index: 2;
     width: 280px;
     height: 280px;
     opacity: 0.04;
     pointer-events: none
 }

 .hero__compass svg {
     width: 100%;
     height: 100%
 }

 /* Wave divider */
 .hero__wave {
     position: absolute;
     bottom: -1px;
     left: 0;
     right: 0;
     z-index: 3;
     line-height: 0
 }

 .hero__wave svg {
     width: 100%;
     height: auto;
     display: block
 }

 /* Scroll indicator */
 .hero__scroll {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 4;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.3);
     font-size: 10px;
     font-family: var(--font-mono);
     letter-spacing: 1px;
     text-transform: uppercase
 }

 .hero__scroll-line {
     width: 1px;
     height: 40px;
     background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
     animation: scrollPulse 2s ease infinite
 }

 @keyframes scrollPulse {

     0%,
     100% {
         opacity: 0.3;
         height: 40px
     }

     50% {
         opacity: 0.6;
         height: 50px
     }
 }

 @media(max-width:768px) {
     .hero {
         min-height: 80vh
     }

     .hero__content {
         padding: 80px 0 60px
     }

     .hero__compass {
         display: none
     }
 }

 /* ================================================================
   TRUST BAR
   ================================================================ */
 .trust {
     background: var(--white);
     border-bottom: 1px solid var(--gray-200)
 }

 .trust__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 32px;
     padding: 48px 0;
     text-align: center
 }

 .trust__item {
     position: relative
 }

 .trust__item:not(:last-child)::after {
     content: '';
     position: absolute;
     right: -16px;
     top: 10%;
     height: 80%;
     width: 1px;
     background: var(--gray-200)
 }

 .trust__number {
     font-family: var(--font-display);
     font-size: clamp(28px, 3vw, 40px);
     font-weight: 700;
     color: var(--navy-800);
     line-height: 1;
     margin-bottom: 6px
 }

 .trust__label {
     font-size: 12px;
     font-weight: 500;
     color: var(--gray-500);
     text-transform: uppercase;
     letter-spacing: 1px
 }

 @media(max-width:768px) {
     .trust__grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 24px
     }

     .trust__item:not(:last-child)::after {
         display: none
     }
 }

 /* ================================================================
   SECTION HEADER
   ================================================================ */
 .section-header {
     margin-bottom: 48px;
     max-width: 580px
 }

 .section-header--center {
     text-align: center;
     margin-left: auto;
     margin-right: auto
 }

 .section-header__overline {
     font-family: var(--font-mono);
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--blue-500);
     margin-bottom: 12px
 }

 .section-header__overline--gold {
     color: var(--gold-500)
 }

 .section-header__title {
     font-family: var(--font-display);
     font-size: clamp(26px, 3.2vw, 38px);
     font-weight: 600;
     line-height: 1.15;
     letter-spacing: -0.015em;
     color: var(--navy-800);
     margin-bottom: 12px
 }

 .section-header__title--light {
     color: var(--white)
 }

 .section-header__desc {
     font-size: 15px;
     color: var(--gray-500);
     line-height: 1.7
 }

 .section-header__desc--light {
     color: rgba(255, 255, 255, 0.5)
 }

 .section-header__row {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     gap: 24px;
     flex-wrap: wrap
 }

 /* ================================================================
   SERVICE CARDS
   ================================================================ */
 .services-section {
     padding: 96px 0;
     background: var(--gray-50)
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px
 }

 @media(max-width:1024px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:640px) {
     .services-grid {
         grid-template-columns: 1fr
     }
 }

 .service-card {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-xl);
     padding: 36px 28px 28px;
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
     transition: all 280ms var(--ease);
     position: relative;
     overflow: hidden
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--blue-400), var(--gold-500));
     opacity: 0;
     transition: opacity 280ms var(--ease)
 }

 .service-card:hover {
     border-color: var(--blue-200);
     box-shadow: var(--shadow-md);
     transform: translateY(-4px);
     color: inherit
 }

 .service-card:hover::before {
     opacity: 1
 }

 .service-card__icon {
     width: 56px;
     height: 56px;
     border-radius: var(--radius-lg);
     background: var(--blue-50);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 26px;
     margin-bottom: 24px;
     transition: all 280ms var(--ease)
 }

 .service-card:hover .service-card__icon {
     background: var(--navy-800)
 }

 .service-card:hover .service-card__icon svg {
     color: var(--gold-500)
 }

 .service-card__title {
     font-size: 17px;
     font-weight: 600;
     color: var(--navy-800);
     margin-bottom: 10px
 }

 .service-card__desc {
     font-size: 13px;
     color: var(--gray-500);
     line-height: 1.65;
     flex: 1
 }

 .service-card__link {
     margin-top: 20px;
     font-size: 13px;
     font-weight: 600;
     color: var(--blue-500);
     display: inline-flex;
     align-items: center;
     gap: 6px;
     transition: gap 150ms var(--ease)
 }

 .service-card:hover .service-card__link {
     gap: 10px
 }

 .service-table {
     background: #fff;
 }

 .service-table thead {
     background: #f4f6f8;
 }

 .service-table th {
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.85rem;
     letter-spacing: 0.5px;
 }

 .service-table td {
     vertical-align: middle;
 }

 .service-note {
     font-size: 0.85rem;
     color: #6c757d;
     margin-top: -10px;
 }

 .service-info-box {
     background: #f8f9fa;
     border-left: 4px solid #c7a84a;
     /* možeš staviti brand boju */
     padding: 20px;
     margin: 30px 0;
 }

 .service-info-box h5 {
     margin-bottom: 10px;
     font-weight: 600;
 }

 .service-block {
     margin-bottom: 25px;
 }

 .service-block h4 {
     font-size: 1.1rem;
     margin-bottom: 8px;
 }


 /* ================================================================
   LISTING CARDS
   ================================================================ */
 .listings-section {
     padding: 96px 0;
     background: var(--white)
 }

 .listings-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px
 }

 @media(max-width:1024px) {
     .listings-grid {
         grid-template-columns: repeat(2, 1fr)
     }
 }

 @media(max-width:640px) {
     .listings-grid {
         grid-template-columns: 1fr
     }
 }

 .listing-card {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-xl);
     overflow: hidden;
     text-decoration: none;
     color: inherit;
     display: block;
     transition: all 280ms var(--ease)
 }

 .listing-card:hover {
     box-shadow: var(--shadow-md);
     border-color: var(--gray-300);
     transform: translateY(-3px);
     color: inherit
 }

 .listing-card__img {
     position: relative;
     width: 100%;
     aspect-ratio: 16/10;
     background: var(--gray-100);
     overflow: hidden
 }

 .listing-card__img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 500ms var(--ease)
 }

 .listing-card__image {
     position: relative;
     width: 100%;
     aspect-ratio: 16/10;
     overflow: hidden
 }

 .listing-card__image .image {
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 500ms var(--ease)
 }

 .listing-card:hover .listing-card__img img {
     transform: scale(1.04)
 }

 .listing-card:hover .listing-card__image .image {
     transform: scale(1.04)
 }

 .listing-card__badge {
     position: absolute;
     top: 12px;
     left: 12px;
     display: inline-flex;
     padding: 4px 12px;
     font-size: 11px;
     font-weight: 600;
     border-radius: var(--radius-full);
     z-index: 1
 }

 .listing-card__badge--novo {
     background: var(--navy-800);
     color: var(--white)
 }

 .listing-card__badge--rabljeno {
     background: var(--blue-100);
     color: var(--blue-600)
 }

 .listing-card__badge--oprema {
     background: var(--gold-200);
     color: var(--navy-800)
 }

 .listing-card__body {
     padding: 20px
 }

 .listing-card__brand {
     font-family: var(--font-mono);
     font-size: 10px;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: var(--blue-500);
     margin-bottom: 4px
 }

 .listing-card__title {
     font-size: 16px;
     font-weight: 600;
     color: var(--navy-800);
     margin-bottom: 8px;
     line-height: 1.3
 }

 .listing-card__specs {
     font-size: 12px;
     color: var(--gray-500);
     margin-bottom: 16px;
     display: flex;
     gap: 6px;
     flex-wrap: wrap
 }

 .listing-card__specs span {
     display: inline-flex;
     align-items: center;
     gap: 4px
 }

 .listing-card__specs span::before {
     content: '·';
     color: var(--gray-300);
     font-weight: 700
 }

 .listing-card__specs span:first-child::before {
     display: none
 }

 .listing-card__footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 16px;
     border-top: 1px solid var(--gray-100)
 }

 .listing-card__price {
     font-size: 20px;
     font-weight: 700;
     color: var(--navy-800)
 }

 .listing-card__price small {
     font-size: 11px;
     font-weight: 400;
     color: var(--gray-400);
     margin-left: 2px
 }

 .listing-card__action {
     font-size: 12px;
     font-weight: 600;
     color: var(--blue-500);
     display: inline-flex;
     align-items: center;
     gap: 4px
 }

 /* ================================================================
   BRANDS SECTION
   ================================================================ */
 .brands-section {
     padding: 80px 0;
     background: var(--gray-50);
     border-top: 1px solid var(--gray-200);
     border-bottom: 1px solid var(--gray-200)
 }

 .brands-row {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 48px;
     flex-wrap: wrap;
     margin-bottom: 48px
 }

 .brand-logo {
     height: 40px;
     opacity: 0.35;
     filter: grayscale(100%);
     transition: all 300ms var(--ease);
     cursor: pointer
 }

 .brand-logo:hover {
     opacity: 1;
     filter: grayscale(0%)
 }

 .brands-cards {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 48px
 }

 @media(max-width:768px) {
     .brands-cards {
         grid-template-columns: 1fr
     }
 }

 .brand-card {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-xl);
     padding: 32px 24px;
     display: flex;
     align-items: center;
     gap: 20px;
     text-decoration: none;
     color: inherit;
     transition: all 280ms var(--ease)
 }

 .brand-card:hover {
     box-shadow: var(--shadow-md);
     border-color: var(--blue-200);
     transform: translateY(-2px);
     color: inherit
 }

 .brand-card__logo {
     width: 64px;
     height: 64px;
     border-radius: var(--radius-lg);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     font-size: 24px;
     font-weight: 700;
     font-family: var(--font-display)
 }

 .brand-card__info {
     flex: 1
 }

 .brand-card__name {
     font-size: 16px;
     font-weight: 600;
     color: var(--navy-800);
     margin-bottom: 4px
 }

 .brand-card__tagline {
     font-size: 13px;
     color: var(--gray-500);
     line-height: 1.5
 }

 .brand-card__arrow {
     color: var(--gray-300);
     font-size: 18px;
     transition: all 200ms var(--ease)
 }

 .brand-card:hover .brand-card__arrow {
     color: var(--blue-500);
     transform: translateX(3px)
 }

 /* ================================================================
   CTA BANNER
   ================================================================ */
 .cta-section {
     padding: 96px 0;
     background: var(--navy-800);
     position: relative;
     overflow: hidden
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(200, 169, 110, 0.07) 0%, transparent 70%)
 }

 .cta-section::after {
     content: '';
     position: absolute;
     bottom: -80px;
     left: -80px;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(46, 107, 158, 0.06) 0%, transparent 70%)
 }

 .cta__content {
     position: relative;
     z-index: 1;
     text-align: center;
     max-width: 560px;
     margin: 0 auto
 }

 .cta__content .section-header__title {
     color: var(--white)
 }

 .cta__phone {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-family: var(--font-mono);
     font-size: 13px;
     color: rgba(255, 255, 255, 0.4);
     margin-top: 20px
 }

 .cta__phone a {
     color: rgba(255, 255, 255, 0.5)
 }

 .cta__phone a:hover {
     color: var(--white)
 }

 /* ================================================================
   FOOTER
   ================================================================ */
 .footer {
     background: var(--navy-900);
     color: rgba(255, 255, 255, 0.4);
     padding: 80px 0 40px
 }

 .footer__logo {
     margin-bottom: 20px;
 }

 .footer__logo img {
     height: 60px;
     width: auto;
 }

 .footer__grid {
     align-items: start;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.2fr;
     gap: 48px;
     margin-bottom: 56px
 }

 @media(max-width:1024px) {
     .footer__grid {
         grid-template-columns: 1fr 1fr;
         gap: 32px
     }
 }

 @media(max-width:640px) {
     .footer__grid {
         grid-template-columns: 1fr
     }
 }

 .footer__brand {
     display: flex;
     flex-direction: column;
     justify-content: flex-start;
     max-width: 300px;
     padding-right: 30px;
     border-right: 1px solid rgba(255, 255, 255, 0.06);
 }

 .footer__brand .nav__logo {
     margin-bottom: 16px
 }

 .footer__brand .nav__logo-text {
     color: var(--white)
 }

 .footer__brand .nav__logo-text span {
     color: rgba(255, 255, 255, 0.4)
 }

 .footer__brand-desc {
     font-size: 14px;
     line-height: 1.7
 }

 .footer__heading {
     font-size: 11px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: rgba(255, 255, 255, 0.55);
     margin-bottom: 16px
 }

 .footer__link {
     display: block;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.4);
     padding: 5px 0;
     text-decoration: none;
     transition: color 150ms
 }

 .footer__link:hover {
     color: var(--white)
 }

 .footer__contact-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 14px;
     margin-bottom: 12px
 }

 .footer__contact-item svg {
     flex-shrink: 0;
     margin-top: 2px;
     color: var(--gold-500);
     opacity: 0.6
 }

 .footer__bottom {
     padding-top: 32px;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 16px;
     font-size: 12px
 }

 .footer__bottom a {
     color: rgba(255, 255, 255, 0.3)
 }

 .footer__bottom a:hover {
     color: rgba(255, 255, 255, 0.6)
 }

 .footer__legal {
     display: flex;
     gap: 20px
 }

 .footer__credit {
     font-size: 11px;
     opacity: 0.5;
     display: inline-block;
     margin-top: 6px;
 }

 .footer__credit a {
     color: rgba(255, 255, 255, 0.5);
     text-decoration: none;
 }

 .footer__credit a:hover {
     color: var(--gold-400);
 }

 /* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
 .fade-up {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out)
 }

 .fade-up.visible {
     opacity: 1;
     transform: translateY(0)
 }

 .fade-up-delay-1 {
     transition-delay: 100ms
 }

 .fade-up-delay-2 {
     transition-delay: 200ms
 }

 .fade-up-delay-3 {
     transition-delay: 300ms
 }

 .fade-up-delay-4 {
     transition-delay: 400ms
 }

 /* Hero entrance animation */
 @keyframes heroFadeIn {
     from {
         opacity: 0;
         transform: translateY(20px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 .hero__content>* {
     animation: heroFadeIn 700ms var(--ease-out) both
 }

 .hero__content>*:nth-child(1) {
     animation-delay: 200ms
 }

 .hero__content>*:nth-child(2) {
     animation-delay: 350ms
 }

 .hero__content>*:nth-child(3) {
     animation-delay: 500ms
 }

 .hero__content>*:nth-child(4) {
     animation-delay: 650ms
 }

 .error-page {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #0B1D33;
     color: #fff;
     text-align: center;
 }

 .error-wrapper h1 {
     font-size: 120px;
     margin-bottom: 20px;
 }

 .error-wrapper p {
     font-size: 18px;
     margin-bottom: 30px;
     opacity: 0.7;
 }

 .services-grid--8 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 28px;
 }

 @media (max-width: 1200px) {
     .services-grid--8 {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 640px) {
     .services-grid--8 {
         grid-template-columns: 1fr;
     }
 }

 .mega__grid--cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px
 }

 .mega__item {
     display: flex;
     gap: 14px;
     padding: 18px;
     border-radius: 14px;
     background: white;
     transition: all .25s ease;
     border: 1px solid var(--gray-100);
 }

 .mega__item:hover {
     background: var(--blue-50);
     transform: translateY(-4px);
     border-color: var(--blue-200);
 }

 .mega__icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: var(--blue-50);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--blue-600);
 }

 @media (max-width: 1100px) {
     .mega__grid--cards {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 .service-hero {
     padding: 140px 0 90px;
     background-size: cover;
     background-position: center;
     position: relative;
     color: white;
 }

 .service-hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(rgba(10, 25, 47, .75),
             rgba(10, 25, 47, .75));
 }

 .service-hero__content {
     position: relative;
     max-width: 720px;
 }

 .service-hero__overline {
     text-transform: uppercase;
     letter-spacing: 1.5px;
     font-size: 13px;
     opacity: .8;
     margin-bottom: 12px;
 }

 .service-hero__title {
     font-size: 44px;
     font-weight: 700;
     margin-bottom: 18px;
 }

 .service-hero__subtitle {
     font-size: 18px;
     opacity: .9;
 }

 .service-content {
     padding: 90px 0;
 }

 .service-content__grid {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 70px;
 }

 .service-features {
     background: var(--gray-50);
     padding: 35px;
     border-radius: 18px;
 }

 .service-features h3 {
     margin-bottom: 18px;
 }

 .service-features ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .service-features li {
     padding: 12px 0;
     border-bottom: 1px solid var(--gray-100);
 }

 .service-features li:last-child {
     border-bottom: none;
 }

 @media (max-width: 992px) {
     .service-content__grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }
 }

 .service-hero--services {
     background: linear-gradient(rgba(10, 25, 47, .75), rgba(10, 25, 47, .75)),
         url('/assets/img/services/services-hero.jpg') center/cover;
 }

 /* ================================================================
    PROLUKS
   ================================================================ */

 /* ================================
   PROLUKS HERO
================================ */

 .proluks-hero {
     padding: 180px 0 140px;
     background: linear-gradient(rgba(13, 27, 42, 0.92),
             rgba(13, 27, 42, 0.92));
     color: var(--white);
 }

 .proluks-hero-content {
     max-width: 760px;
 }

 .proluks-hero__title {
     font-family: var(--font-display);
     font-size: clamp(42px, 5vw, 60px);
     font-weight: 600;
     line-height: 1.08;
     letter-spacing: -0.02em;
     margin-bottom: 24px;
 }

 .proluks-hero__title em {
     font-style: normal;
     color: var(--gold-500);
 }

 .proluks-hero p {
     font-size: 18px;
     opacity: 0.7;
     max-width: 520px;
     margin-bottom: 36px;
 }

 .proluks-logo {
     max-width: 200px;
     margin-bottom: 25px;
 }

 .proluks-subtitle {
     display: inline-block;
     font-family: var(--font-mono);
     font-size: 12px;
     letter-spacing: 2.5px;
     text-transform: uppercase;
     color: var(--gold-500);
     margin-bottom: 18px;
 }


 /* ================================
   ABOUT SECTION
================================ */

 .proluks-about {
     background: #f8f9fb;
 }

 .feature-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .feature-list li {
     margin-bottom: 12px;
     font-size: 16px;
 }

 .feature-list span {
     color: #1d3557;
     font-weight: 600;
     margin-right: 8px;
 }

 .about-image-wrapper {
     /*background: #fff;*/
     padding: 25px;
     border-radius: 25px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .card {
     border-radius: 18px;
     border: 1px solid var(--gray-200);
     transition: all .25s ease;
 }

 .card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-lg);
 }

 .product-image {
     height: 240px;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 30px;
     background: #fff;
     border-top-left-radius: 18px;
     border-top-right-radius: 18px;
 }

 .product-image img {
     max-height: 180px;
     width: auto;
 }

 /* ================================================================
   MARKETPLACE LAYOUT
   ================================================================ */

 .marketplace-layout {
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 40px;
 }

 @media (max-width: 992px) {
     .marketplace-layout {
         grid-template-columns: 1fr;
     }
 }

 .marketplace-filter {
     background: var(--white);
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-xl);
     padding: 28px;
     height: fit-content;
 }

 .filter-group {
     margin-bottom: 20px;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .filter-group label {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--gray-500);
 }

 .filter-group input,
 .filter-group select {
     padding: 12px;
     border: 1px solid var(--gray-200);
     border-radius: var(--radius-md);
     font-size: 14px;
 }

 .marketplace-topbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 28px;
     font-size: 14px;
 }

 .marketplace-topbar select {
     padding: 10px 14px;
     border-radius: var(--radius-md);
     border: 1px solid var(--gray-200);
     width: 50%;
 }

 /* ================================================================
   SINGLE LISTING
   ================================================================ */

 .single-layout {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 60px;
 }

 @media (max-width: 992px) {
     .single-layout {
         grid-template-columns: 1fr;
     }
 }

 .single-gallery img {
     width: 100%;
     border-radius: var(--radius-xl);
     border: 1px solid var(--gray-200);
 }

 .single-info {
     background: var(--gray-50);
     padding: 32px;
     border-radius: var(--radius-xl);
     border: 1px solid var(--gray-200);
 }

 .single-price {
     font-size: 32px;
     font-weight: 700;
     color: var(--navy-800);
     margin-bottom: 24px;
 }

 .single-meta {
     display: flex;
     flex-direction: column;
     gap: 10px;
     font-size: 14px;
     color: var(--gray-700);
 }

 .spec-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 @media (max-width: 768px) {
     .spec-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 .spec-grid div {
     padding: 16px;
     background: var(--gray-50);
     border-radius: var(--radius-md);
     border: 1px solid var(--gray-200);
 }

 .spec-grid span {
     display: block;
     font-size: 12px;
     color: var(--gray-500);
     margin-bottom: 6px;
 }

 /* ================================================================
   SLIDER
   ================================================================ */

 .slider {
     position: relative;
     overflow: hidden;
     border-radius: var(--radius-xl);
     border: 1px solid var(--gray-200);
 }

 .slider__track {
     display: flex;
     transition: transform 500ms var(--ease);
 }

 .slider__slide {
     min-width: 100%;
     aspect-ratio: 16/10;
 }

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

 .slider__btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 42px;
     height: 42px;
     border-radius: 50%;
     border: none;
     background: rgba(0, 0, 0, 0.45);
     color: white;
     font-size: 22px;
     cursor: pointer;
     transition: all 200ms;
 }

 .slider__btn:hover {
     background: var(--gold-500);
     color: var(--navy-800);
 }

 .slider__btn--prev {
     left: 16px;
 }

 .slider__btn--next {
     right: 16px;
 }

 .slider__dots {
     position: absolute;
     bottom: 14px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 8px;
 }

 .slider__dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 200ms;
 }

 .slider__dot.active {
     background: var(--gold-500);
     transform: scale(1.2);
 }

 /* ================================================================
   SINGLE DESCRIPTION
   ================================================================ */

 .single-description-section {
     padding: 90px 0;
     background: var(--gray-50);
 }

 .single-description-layout {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 60px;
 }

 @media (max-width: 992px) {
     .single-description-layout {
         grid-template-columns: 1fr;
     }
 }

 .single-section-title {
     font-family: var(--font-display);
     font-size: 32px;
     margin-bottom: 28px;
     color: var(--navy-800);
 }

 .single-description-main p {
     margin-bottom: 18px;
     line-height: 1.75;
     font-size: 15px;
     color: var(--gray-700);
 }

 .info-box {
     background: var(--white);
     padding: 28px;
     border-radius: var(--radius-xl);
     border: 1px solid var(--gray-200);
 }

 .info-box__title {
     font-weight: 600;
     margin-bottom: 16px;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--gray-600);
 }

 .info-box ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .info-box li {
     margin-bottom: 10px;
     font-size: 14px;
     color: var(--gray-700);
 }

 .service-block {
     margin-bottom: 80px;
 }

 .service-block h2 {
     margin-bottom: 20px;
 }

 .highlight-block {
     border-left: 3px solid rgba(0, 200, 255, 0.6);
     padding-left: 20px;
 }

 .admin-delete {
     background: none;
     border: none;
     color: #c0392b;
     cursor: pointer;
     text-decoration: underline;
 }

 /* =====================================================
   NAUTICPRINT STRIPE
   ===================================================== */

 .nauticprint-stripe {
     background: linear-gradient(135deg, var(--navy-800, #0B1D33) 0%, #0d2b4e 60%, #0a2040 100%);
     padding: 56px 0;
     position: relative;
     overflow: hidden;
 }

 .nauticprint-stripe::before {
     content: '';
     position: absolute;
     top: -80px;
     right: -80px;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(0, 160, 220, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .nauticprint-stripe::after {
     content: '';
     position: absolute;
     bottom: -60px;
     left: 10%;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(180, 140, 0, 0.08) 0%, transparent 70%);
     pointer-events: none;
 }

 .nauticprint-stripe__inner {
     display: grid;
     grid-template-columns: auto 1fr auto;
     gap: 40px;
     align-items: center;
 }

 .nauticprint-stripe__visual {
     display: flex;
     flex-direction: column;
     gap: 12px;
     flex-shrink: 0;
 }

 .nauticprint-stripe__icon-wrap {
     width: 60px;
     height: 60px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .nauticprint-stripe__icon-wrap--print {
     background: rgba(0, 160, 220, 0.18);
     color: #60cdff;
     border: 1px solid rgba(0, 160, 220, 0.25);
 }

 .nauticprint-stripe__icon-wrap--vinyl {
     background: rgba(180, 140, 0, 0.18);
     color: #f0c040;
     border: 1px solid rgba(180, 140, 0, 0.25);
 }

 .nauticprint-stripe__overline {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: #60cdff;
     margin-bottom: 8px;
 }

 .nauticprint-stripe__title {
     font-size: 24px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 12px;
     line-height: 1.3;
 }

 .nauticprint-stripe__desc {
     font-size: 15px;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.7;
     margin-bottom: 20px;
     max-width: 560px;
 }

 .nauticprint-stripe__tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .nauticprint-stripe__tags span {
     font-size: 12px;
     font-weight: 500;
     padding: 4px 12px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.08);
     color: rgba(255, 255, 255, 0.75);
     border: 1px solid rgba(255, 255, 255, 0.12);
 }

 .nauticprint-stripe__cta {
     flex-shrink: 0;
 }

 .nauticprint-stripe__cta .btn--primary {
     white-space: nowrap;
 }

 @media (max-width: 900px) {
     .nauticprint-stripe__inner {
         grid-template-columns: 1fr;
         gap: 28px;
         text-align: center;
     }

     .nauticprint-stripe__visual {
         flex-direction: row;
         justify-content: center;
     }

     .nauticprint-stripe__desc {
         max-width: 100%;
     }

     .nauticprint-stripe__tags {
         justify-content: center;
     }

     .nauticprint-stripe__cta {
         text-align: center;
     }
 }


 /* =====================================================
   MARKETPLACE FILTER IMPROVEMENTS
   ===================================================== */

 .filter-label {
     display: block;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--gray-500, #6b7280);
     margin-bottom: 8px;
 }

 .filter-select,
 .filter-input {
     width: 100%;
     padding: 10px 14px;
     border: 1px solid var(--gray-200, #e5e7eb);
     border-radius: 8px;
     font-size: 14px;
     color: var(--gray-800, #1f2937);
     background: #fff;
     transition: border-color 0.15s, box-shadow 0.15s;
     appearance: none;
     -webkit-appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 12px center;
     padding-right: 32px;
     cursor: pointer;
 }

 .filter-input {
     background-image: none;
     padding-right: 14px;
 }

 .filter-select:focus,
 .filter-input:focus {
     outline: none;
     border-color: var(--blue-400, #60a5fa);
     box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.12);
 }

 .filter-select--sort {
     font-size: 13px;
     padding: 8px 32px 8px 12px;
 }

 .filter-reset {
     display: block;
     text-align: center;
     margin-top: 12px;
     font-size: 13px;
     color: var(--gray-500, #6b7280);
     text-decoration: none;
     transition: color 0.15s;
 }

 .filter-reset:hover {
     color: #c0392b;
 }

/* ============================================================
   MARKETPLACE – Lista oglasa
   ============================================================ */

.marketplace-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 768px) {
    .marketplace-layout { grid-template-columns: 1fr; }
}

.marketplace-filter {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    position: sticky;
    top: 80px;
}

.filter-group { margin-bottom: 18px; }

.filter-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.filter-select,
.filter-input {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--gray-200, #e5e7eb);
    border-radius: 8px;
    font-size: .875rem;
    color: var(--gray-800, #1a1a2e);
    background: var(--white);
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s;
}
.filter-select:focus,
.filter-input:focus { border-color: var(--navy, #0B1D33); }

.filter-select--sort { width: auto; min-width: 180px; }

.filter-reset {
    display: block;
    margin-top: 10px;
    font-size: .8rem;
    color: var(--gray-400, #9ca3af);
    text-decoration: none;
    text-align: center;
}
.filter-reset:hover { color: var(--red, #dc2626); }

.marketplace-content { min-width: 0; }

.marketplace-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: .875rem;
    color: var(--gray-400, #9ca3af);
    flex-wrap: wrap;
    gap: 10px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.listings-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400, #9ca3af);
}

/* Kartica oglasa */
.listing-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.13);
}

.listing-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100, #f3f4f6);
}
.listing-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.listing-card:hover .listing-card__image img { transform: scale(1.05); }

.listing-card__no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300, #d1d5db);
}

.listing-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.listing-card__brand {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold, #c9a84c);
}
.listing-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy, #0B1D33);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.listing-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    color: var(--gray-400, #9ca3af);
}
.listing-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--gray-100, #f3f4f6);
}
.listing-card__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy, #0B1D33);
}
.listing-card__action {
    font-size: .78rem;
    color: var(--gold, #c9a84c);
    font-weight: 600;
}

/* ============================================================
   SINGLE oglas
   ============================================================ */

.single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 900px) {
    .single-layout { grid-template-columns: 1fr; }
}

/* Slider – thumbnails i no-media (slider base stilovi su već definirani gore) */
.slider {
    margin-bottom: 12px;
    background: #000;
}
.slider__slide {
    min-width: 100%;
    aspect-ratio: 16/10;
}
.slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* Wrapper da prev/next budu pozicionirani */
.slider { position: relative; }

/* Thumbnails */
.slider-thumbs {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.slider-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: none;
    transition: border-color .2s;
}
.slider-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-thumb.active { border-color: var(--gold, #c9a84c); }

/* No media */
.single-no-media {
    aspect-ratio: 16/9;
    background: var(--gray-50, #f8f9fc);
    border: 2px dashed var(--gray-200, #e5e7eb);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-300, #d1d5db);
    margin-bottom: 24px;
    text-align: center;
    padding: 20px;
}
.single-no-media p {
    font-size: .9rem;
    color: var(--gray-400, #9ca3af);
    margin: 0;
}

/* Info sidebar */
.single-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy, #0B1D33);
    margin-bottom: 12px;
    line-height: 1;
}
.single-price--inquiry {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-400, #9ca3af);
}
.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.single-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    background: var(--gray-50, #f8f9fc);
    border: 1px solid var(--gray-200, #e5e7eb);
    color: var(--gray-500, #6b7280);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Kontakt box */
.single-contact {
    background: var(--gray-50, #f8f9fc);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 8px;
}
.single-contact__title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-400, #9ca3af);
    margin-bottom: 12px;
}
.single-contact__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
    font-size: .9rem;
}
.single-contact__row:last-child { border-bottom: none; }
.single-contact__row svg { flex-shrink: 0; color: var(--gray-400, #9ca3af); }
.single-contact__row a { color: var(--navy, #0B1D33); text-decoration: none; font-weight: 600; }
.single-contact__row a:hover { color: var(--gold, #c9a84c); }

/* Opis sekcija */
.single-description-section {
    background: var(--gray-50, #f8f9fc);
    padding: 48px 0;
}
.single-description-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 900px) {
    .single-description-layout { grid-template-columns: 1fr; }
}
.single-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy, #0B1D33);
    margin-bottom: 20px;
}
.single-description-text {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--gray-700, #374151);
}

/* Spec lista */
.spec-list {
    margin: 0;
}
.spec-list__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--gray-200, #e5e7eb);
}
.spec-list__row:last-child { border-bottom: none; }
.spec-list__row dt {
    font-size: .85rem;
    color: var(--gray-500, #6b7280);
    padding: 9px 12px 9px 0;
    font-weight: 500;
}
.spec-list__row dd {
    font-size: .85rem;
    color: var(--navy, #0B1D33);
    font-weight: 600;
    padding: 9px 0;
}
.spec-badge--yes {
    background: #dcfce7;
    color: #166534;
    font-size: .75rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* ============================================================
   ADMIN – Upload slika
   ============================================================ */

.adm-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}
.adm-img-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid var(--border, #e5e7eb);
    transition: border-color .2s, opacity .2s;
}
.adm-img-item img { width:100%; height:100%; object-fit:cover; display:block; }
.adm-img-delete-label { position:absolute; top:4px; right:4px; cursor:pointer; }
.adm-img-delete-label input { display:none; }
.adm-img-delete-icon {
    display: inline-block;
    background: rgba(0,0,0,.5);
    border-radius: 50%;
    width: 26px; height: 26px;
    text-align: center; line-height: 26px;
    font-size: 13px;
    transition: background .2s;
}
.adm-img-delete-label:has(input:checked) .adm-img-delete-icon { background: rgba(220,38,38,.85); }
.adm-img-item:has(.adm-img-delete-cb:checked) { border-color: #dc2626; opacity: .55; }

.adm-img-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}
.adm-img-preview-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid var(--border, #e5e7eb);
}
.adm-img-preview-item img { width:100%; height:100%; object-fit:cover; display:block; }
.adm-img-preview-item button {
    position: absolute;
    top: 4px; right: 4px;
    background: rgba(0,0,0,.55);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px; height: 22px;
    font-size: 14px; line-height: 22px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy-800);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
    padding: 20px 0;
    animation: cookieSlideUp 0.4s var(--ease-out);
}
.cookie-banner[hidden] {
    display: none;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 260px;
}
.cookie-banner__text strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cookie-banner__text p {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}
.cookie-banner__text a {
    color: var(--gold-400);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.cookie-btn--accept {
    background: var(--gold-400);
    color: var(--navy-900);
}
.cookie-btn--accept:hover {
    background: var(--gold-300);
}
.cookie-btn--reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--reject:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}
.cookie-btn--more {
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn--more:hover {
    color: rgba(255,255,255,0.7);
}

/* ================================================================
   LEGAL PAGES (Privatnost, Uvjeti, Kolačići)
   ================================================================ */
.legal-hero {
    background: var(--navy-800);
    padding: 72px 0 48px;
    text-align: center;
}
.legal-hero__overline {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-400);
    margin-bottom: 12px;
}
.legal-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 12px;
}
.legal-hero__meta {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 0.95rem;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy-800);
    margin: 40px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}
.legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-700);
    margin: 24px 0 8px;
}
.legal-content p {
    margin-bottom: 16px;
}
.legal-content ul, .legal-content ol {
    margin: 0 0 16px 24px;
}
.legal-content li {
    margin-bottom: 8px;
}
.legal-content a {
    color: var(--blue-500);
    text-decoration: underline;
}
.legal-content a:hover {
    color: var(--navy-800);
}
.legal-content strong {
    color: var(--navy-800);
    font-weight: 600;
}
.legal-content .legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.875rem;
}
.legal-content .legal-table th {
    background: var(--gray-100);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: var(--navy-800);
    border: 1px solid var(--gray-200);
}
.legal-content .legal-table td {
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    vertical-align: top;
}
.legal-content .legal-table tr:nth-child(even) td {
    background: var(--gray-50);
}
.legal-nav {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 0;
}
.legal-nav__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
}
.legal-nav__link {
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.legal-nav__link:hover,
.legal-nav__link.active {
    color: var(--navy-800);
    border-bottom-color: var(--gold-400);
}

/* Footer contact links (replaced inline styles) */
.footer__contact-item a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.15s;
}
.footer__contact-item a:hover {
    color: var(--gold-400);
}

/* ================================================================
   MOBILE MENU — submenu toggle + overlay fixes
   ================================================================ */

/* Overlay backdrop */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
}
.mobile-overlay--visible {
    display: block;
    animation: overlayFadeIn 0.25s ease;
}
@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Toggle button (Usluge row) */
.mobile-menu__link--toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    color: inherit;
    padding: 0;
}
.mobile-toggle-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.5;
}
.mobile-menu__link--toggle-open .mobile-toggle-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Submenu — collapsed by default */
.mobile-menu__sub {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-menu__sub--open {
    max-height: 600px;
}
.mobile-menu__link--sub {
    padding-left: 28px !important;
    font-size: 0.85rem !important;
    opacity: 0.75;
    border-left: 2px solid rgba(201, 168, 76, 0.3);
    margin-left: 8px;
}
.mobile-menu__link--sub:hover {
    opacity: 1;
    border-left-color: var(--gold-400);
}

/* ================================================================
   MARKETPLACE — Mobile filter drawer
   ================================================================ */

/* Filter trigger button (visible only on mobile) */
.mkt-filter-btn {
    display: none;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: var(--navy-800);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.15s;
}
.mkt-filter-btn:hover { background: var(--navy-700); }

/* Active filter indicator dot */
.mkt-filter-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 50%;
}

.marketplace-topbar__left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.marketplace-count {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Overlay */
.mkt-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}
.mkt-drawer-overlay--visible {
    display: block;
    animation: overlayFadeIn 0.2s ease;
}

/* Drawer panel */
.mkt-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--white);
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mkt-drawer--open {
    transform: translateX(0);
}
.mkt-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.mkt-drawer__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
}
.mkt-drawer__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: none;
    font-size: 16px;
    color: var(--gray-500);
    cursor: pointer;
    transition: background 0.15s;
}
.mkt-drawer__close:hover { background: var(--gray-100); }
.mkt-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Responsive: show trigger + hide sidebar on mobile */
@media (max-width: 768px) {
    .mkt-filter-btn        { display: flex; }
    .marketplace-filter    { display: none; }  /* desktop sidebar hidden */
    .marketplace-layout    { grid-template-columns: 1fr; }
    .marketplace-topbar    { flex-wrap: nowrap; }
    .filter-select--sort   { min-width: 0; font-size: 0.8rem; }
}
