* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation; /* Disable double-tap zoom */
}

/* Remove focus outline on all elements */
*:focus,
*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

a:focus,
a:active,
button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

html {
  font-size: 16px;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  width: 100%;
}

/* Scale base font size to 90% on desktop devices */
@media (min-width: 1200px) {
  html {
    font-size: 14.4px; /* 16px * 0.9 */
  }
}



/* Offset native anchor jumps for fixed header */
:where(section, div, header, footer, main, article, h1, h2, h3, h4, h5, h6)[id] {
  scroll-margin-top: 110px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

/* ===== LUXURY PASTEL COLOR PALETTE ===== */
:root {
  /* Primary Pastel Colors */
  --pastel-rose: #FFE5EC;
  --pastel-lavender: #E8DEFF;
  --pastel-cream: #FFF8F0;
  --pastel-sage: #E8F3E8;
  --pastel-blue: #E3F2FD;
  --pastel-peach: #FFE8D6;
  
  /* Accent Colors */
  --accent-dusty-rose: #D4A5A5;
  --accent-mauve: #B39DDB;
  --accent-gold: #E6C79C;
  --accent-sage: #A8C69F;
  --accent-terracotta: #D4A59A;
  
  /* Text Colors */
  --text-dark: #3A3A3A;
  --text-medium: #7A7A7A;
  --text-light: #B0B0B0;
  --text-muted: #D0D0D0;
  
  /* Neutral Pastels */
  --white: #FFFFFF;
  --off-white: #FEFEFE;
  --soft-white: #FCFCFC;
  --warm-white: #FFF9F5;
  
  /* Luxury Gradients */
  --gradient-dreamy: linear-gradient(135deg, #FFE5EC 0%, #E8DEFF 50%, #E3F2FD 100%);
  --gradient-sunset: linear-gradient(135deg, #FFE8D6 0%, #FFE5EC 50%, #E8DEFF 100%);
  --gradient-soft: linear-gradient(180deg, #FFF8F0 0%, #FFE5EC 100%);
  --gradient-elegance: linear-gradient(135deg, rgba(255, 229, 236, 0.6) 0%, rgba(232, 222, 255, 0.4) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  
  /* Shadows - Softer & More Elegant */
  --shadow-soft: 0 8px 32px rgba(212, 165, 165, 0.08);
  --shadow-medium: 0 16px 48px rgba(212, 165, 165, 0.12);
  --shadow-strong: 0 24px 64px rgba(212, 165, 165, 0.16);
  --shadow-glow: 0 0 40px rgba(232, 222, 255, 0.3);
  --shadow-inner: inset 0 2px 8px rgba(255, 255, 255, 0.5);
  
  /* Spacing - More Generous */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
  
  /* Border Radius - Softer */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 999px;
  
  /* Transitions - Smoother */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Scale spacing variables to 90% on desktop devices */
@media (min-width: 1200px) {
  :root {
    --space-xs: 0.45rem;
    --space-sm: 0.9rem;
    --space-md: 1.35rem;
    --space-lg: 2.25rem;
    --space-xl: 3.15rem;
    --space-2xl: 4.5rem;
    --space-3xl: 6.3rem;
  }
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid rgba(201, 154, 141, 0.08);
  will-change: transform, background-color;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(201, 154, 141, 0.12);
}

.header.hide {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(-110%) !important;
  transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ===== Navigation ===== */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height 0.3s ease;
}

.header.scrolled .nav-container {
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: 'Lora', 'Playfair Display', serif;
  z-index: 1001;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-logo h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  letter-spacing: 3px;
  font-weight: 700;
  color: #cd0a85;
  margin: 0;
  line-height: 1;
}

.nav-logo h5 {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  color: #3A3A3A !important;
  margin: 2px 0 0 0 !important;
  text-transform: uppercase !important;
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  padding-left: 1px !important;
  line-height: 1.2 !important; /* Dodato za konzistentnost */
}

.nav-logo-subtitle {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  color: #3A3A3A !important;
  margin: 2px 0 0 0 !important;
  margin-right: -2px !important;
  text-transform: uppercase !important;
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  padding: 0 !important;
  padding-left: 1px !important;
  line-height: 1.2 !important;
  display: block !important;
  width: max-content !important;
}

/* Dodatna specifičnost za sve varijante */
.header .nav-logo h5,
.nav-container .nav-logo h5 {
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  color: #3A3A3A !important;
  margin: 2px 0 0 0 !important;
  text-transform: uppercase !important;
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  padding-left: 1px !important;
  line-height: 1.2 !important;
}

.nav-link.active::after {
  box-shadow: none;
}

.nav-link:hover {
  background: rgba(201, 154, 141, 0.08);
  color: var(--accent-rose);
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.utility-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.utility-icons i {
  color: var(--text-medium);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border-radius: 6px;
}

.utility-icons i:hover {
  color: var(--accent-rose);
  background: rgba(201, 154, 141, 0.08);
  transform: translateY(-1px);
}

.separator {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 0.5rem;
  border-radius: 8px;
  background: transparent;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 154, 141, 0.15);
}

.nav-toggle:hover {
  background: rgba(201, 154, 141, 0.08);
  border-color: rgba(201, 154, 141, 0.3);
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .nav-toggle {
  background: transparent;
  border-color: rgba(201, 154, 141, 0.2);
}

.header.scrolled .bar {
  background: var(--text-dark);
}

/* Desktop navigation styles */
.nav-menu {
  display: flex;
  flex-direction: row;
  gap: 0.2rem;
  align-items: center;
  list-style: none;
  position: static;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  transition: none;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
  position: relative;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.8px;
  display: inline-block;
  overflow: hidden;
  outline: none;
  text-transform: uppercase;
}

.nav-link:focus {
  outline: none;
  box-shadow: none;
}

.nav-link:focus-visible {
  outline: none;
}

/* Ultra minimal underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-rose);

  opacity: 0.7;
}

.nav-link:hover {
  background: rgba(201, 154, 141, 0.05);
  color: var(--accent-rose);
}

.nav-link.active {
  background: rgba(201, 154, 141, 0.08);
  color: var(--accent-rose);
}

.nav-link.active::after {
  width: 40%;
  opacity: 1;
}

/* When header is scrolled, keep same styling for consistency */
.header.scrolled .nav-link {
  color: var(--text-dark);
}

.header.scrolled .nav-link:hover {
  background: rgba(201, 154, 141, 0.06);
  color: var(--accent-rose);
}

.header.scrolled .nav-link.active {
  background: rgba(201, 154, 141, 0.1);
  color: var(--accent-rose);
}

@media (max-width: 991px) {
  .nav-menu {
    flex-direction: column;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    box-shadow: none;
    padding: 6rem 2.5rem 2rem;
    gap: 0;
    text-align: left;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
    display: flex;
    justify-content: space-between;
  }

  /* Minimal top accent */
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(201, 154, 141, 0.2);
  }

  /* Remove decorative pattern */
  .nav-menu::after {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../media/hero-fallback.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.281);
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.253);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  padding: 0 var(--space-lg);
}

/* ===== WELCOME SECTION ===== */
@font-face {
  font-family: "Modestic Display Bold";
  src:
    url("../fonts/Modesticdisplay-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sinistre Font";
  src: url("../fonts/Sinistre-Regular.otf") format("opentype"); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nyght Serif"; 
  src: url("../fonts/NyghtSerif-Regular.otf") format("opentype"); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Halibut"; 
  src: url("../fonts/Halibut-Regular.otf") format("opentype"); 
  font-weight: normal;
  font-style: normal;
}


.welcome-section {
  width: 100%;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background-color: #ffffff;
  position: relative;
}

.welcome-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.welcome-text {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 1.4;
  color: var(--text-dark);
  font-weight: 400;
  margin: 0;
  padding: 0 2rem;
}

@media (max-width: 1200px) {
  .welcome-text {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .welcome-section {
    padding: 4rem 1.5rem;
  }
  .welcome-text {
    font-size: 42px;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 3rem 1rem;
    min-height: 300px;
  }
  .welcome-text {
    font-size: 36px;
    padding: 0 0.5rem;
  }
}

@media (max-width: 576px) {
  .welcome-section {
    padding: 2.5rem 1rem;
  }
  .welcome-text {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-family: "Modestic Display Bold";
  src:
    url("../fonts/Sinistre-Bold.otf") format("truetype");
  line-height: 1.1;
}

.hero-title-line {
  display: block;
}

/* Mobile font size for hero title */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
     font-family: "Modestic Display Bold";
  src:
    url("../fonts/Sinistre-Bold.otf") format("truetype");
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    text-align: left;
    transition: right var(--transition-medium);
    box-shadow: none;
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 999;
  }

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

@media (max-width: 768px) {
  .skincare-slider-wrapper {
    padding: 0 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
  }

  .skincare-slider-track {
    display: flex;
    flex-wrap: nowrap;
  }

  .skincare-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    margin: 0 10%;
  }
}

@media (max-width: 576px) {
  .skincare-card {
    flex: 0 0 90%;
    margin: 0 5%;
  }
}

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

.nav-menu li {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-menu.active li:nth-child(1) {
  animation-delay: 0.15s;
}
.nav-menu.active li:nth-child(2) {
  animation-delay: 0.25s;
}
.nav-menu.active li:nth-child(3) {
  animation-delay: 0.35s;
}
.nav-menu.active li:nth-child(4) {
  animation-delay: 0.45s;
}
.nav-menu.active li:nth-child(5) {
  animation-delay: 0.55s;
}
.nav-menu.active li:nth-child(6) {
  animation-delay: 0.65s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile menu navigation wrapper */
.nav-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav-menu .nav-link {
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  margin: 0.25rem 0;

  background: transparent;

  transition: all 0.2s ease;
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

/* Minimal hover effect for mobile */
.nav-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-rose);
  transition: width 0.25s ease;
}

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

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  background: rgba(201, 154, 141, 0.06);
  color: var(--accent-rose);
}

/* Minimal active indicator - HIDE BULLET IN MOBILE NAV */
.nav-menu .nav-link.active::before {
  content: "" !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  margin-right: 0 !important;
}

/* Mobile menu footer */
.mobile-menu-footer {
  margin-top: auto;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(201, 154, 141, 0.15);
  display: none; 
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(248, 237, 238, 0.3) 100%
  );
  border-radius: 0;
  padding: 2rem 0 1rem;
  margin-top: 4.5rem; 
  width: 100%;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* Show mobile footer only on mobile devices */
@media (max-width: 991px) {
  .mobile-menu-footer {
    display: block;
  }
}

.mobile-footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.75rem;
}

.mobile-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.5rem 0;
}

.mobile-footer-contact h4 {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c99a8d;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  font-family: "Inter", sans-serif;
}

.mobile-footer-contact a,
.mobile-footer-contact p {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.25s ease;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 0.25rem;
}

.mobile-footer-contact a {
  position: relative;
  display: inline-block;
}

.mobile-footer-contact a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0.25rem;
  width: 0;
  height: 1px;
  background: var(--accent-rose);
  transition: width 0.25s ease;
}

.mobile-footer-contact a:hover {
  color: var(--accent-rose);
  transform: translateX(2px);
}

.mobile-footer-contact a:hover::before {
  width: calc(100% - 0.25rem);
}

.mobile-social-icons {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 154, 141, 0.12);
  justify-content: center;
}

.mobile-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(201, 154, 141, 0.12) 0%,
    rgba(201, 154, 141, 0.08) 100%
  );
  border: 1px solid rgba(201, 154, 141, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(201, 154, 141, 0.08);
}

.mobile-social-icons a:hover {
  background: linear-gradient(135deg, var(--accent-rose) 0%, #cd0a85 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(201, 154, 141, 0.25);
  border-color: var(--accent-rose);
}

/* Menu header - minimal styling */
.nav-menu-header {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--text-medium);
  text-transform: uppercase;
  opacity: 0;
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.nav-menu.active .nav-menu-header {
  opacity: 1;
}

.nav-toggle {
  display: flex;
}

.nav-toggle .bar {
  background: var(--black);
}

.nav-toggle.active {
  background: rgba(201, 154, 141, 0.1);
  border-color: var(--accent-rose);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--text-dark);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--text-dark);
}

.nav-utilities {
  display: none;
}

/* Mobile logo styling */
.nav-logo h2 {
  margin: 0;
  font-weight: 500;
}

.nav-logo h5 {
  font-family: 'Montserrat', 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  color: #3A3A3A !important;
  margin: 2px 0 0 0 !important;
  text-transform: uppercase !important;
  padding-left: 1px !important;
  line-height: 1.2 !important;
}

.hero-video video {
  object-position: center center;
}

/* ===== ANIMATIONS ===== */

@keyframes slideDownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(0.98);
  }
}

/* Smooth mobile menu transitions */
.nav-menu {
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile menu overlay - minimal */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button - minimal design */
.nav-close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(201, 154, 141, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 300;
}

.nav-close:hover {
  transform: rotate(90deg);
  background: rgba(201, 154, 141, 0.1);
  color: var(--accent-rose);
  border-color: var(--accent-rose);
}

/* Focus styles for keyboard navigation */


.utility-icons i:focus {
  outline: 2px solid var(--accent-rose);
  outline-offset: 2px;
  border-radius: 50%;
}



/* Body lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Prevent background scroll on iOS */
@media (max-width: 991px) {
  body.menu-open {
    width: 100%;
  }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 1.5rem;
  }

  .header.scrolled .nav-container {
    height: 65px;
  }

  .nav-logo {
    font-size: 1.6rem;
  }

  .nav-menu {
    padding: 5rem 2rem 3rem;
    width: 100%;
    max-width: 100%;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    padding: 1.1rem 1.4rem;
    color: #1a1a1a;
    font-weight: 500;
  }

  .nav-close {
    top: 1.2rem;
    right: 1.2rem;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 65px;
    padding: 0 1rem;
  }

  .header.scrolled .nav-container {
    height: 60px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-logo::before {
    font-size: 0.9rem;
  }

  .nav-toggle {
    padding: 0.35rem;
  }

  .bar {
    width: 24px;
  }

  .nav-menu {
    width: 100%;
    max-width: 100%;
    padding: 5rem 1.5rem 2rem;
  }

  .nav-menu .nav-link {
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
    border-radius: 0;
    color: #1a1a1a;
    font-weight: 500;
  }

  .nav-close {
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .nav-menu::after {
    font-size: 2.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}

/* Landscape mobile optimization */
@media (max-width: 991px) and (orientation: landscape) {
  .nav-menu {
    padding: 3.5rem 1.5rem 2rem;
    overflow-y: auto;
  }

  .nav-menu .nav-link {
    padding: 0.8rem 1.3rem;
    margin: 0.25rem 0;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
  }

  .nav-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 32px;
    height: 32px;
  }
}

/* Desktop - make sure links are always visible */
@media (min-width: 992px) {
  .nav-overlay,
  .nav-close {
    display: none !important;
  }
  /* Hide hamburger toggle on desktop */
  .nav-toggle {
    display: none !important;
  }

  .nav-menu {
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-menu::before,
  .nav-menu::after {
    display: none;
  }

  .nav-menu li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Hide mobile menu elements on desktop */
  .nav-menu-header,
  .mobile-menu-footer {
    display: none !important;
  }

  /* Show nav menu content as flex row on desktop */
  .nav-menu-content {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.2rem;
  }

  /* Show only nav links on desktop */
  .nav-menu {
    display: flex !important;
    flex-direction: row !important;
  }
}

/* ===== SKINCARE SECTION ===== */
/* Pure Brilliance & Natural Radiance — simplified card styles provided by user */

.page-layout {
  display: flex;
}

.page-layout.reverse {
  flex-direction: row-reverse;
}

.image-section {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height:100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.05);
  /* Pozicioniranje slike unutar containera - možeš menjati vrednosti */
  /* Format: object-position: horizontalno vertikalno */
  /* Primeri: center center | left top | right bottom | 30% 50% */
  object-position: center center;
  transition: transform 0.3s ease;
}

.content-section {
  flex: 1;
  padding: 2rem 5rem;
  
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  /* Prevent this flex item from forcing the image to shrink when
     the inner carousel has many cards (even 1000). Classic flexbox fix. */
  min-width: 0;
  flex-basis: 0;
}

h1.title {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
  color: #2c2c2c;
  letter-spacing: -0.02em;
}

.title-sub {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin-bottom: 3rem;
  color: #2c2c2c;
  letter-spacing: -0.02em;
}

.cards-carousel {
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem;
  /* Allow parent to shrink regardless of very wide inner content */
  min-width: 0;
}

.cards-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
  min-width: calc(50% - 4rem);
  margin-right: 2rem;
  height: 650px;
  position: relative;
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-size: cover;
  /* Možeš menjati background-position za svaku karticu pomoću editora */
  background-position: center center;
  background-repeat: no-repeat;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */
}

#card-1 {
  background-image: url("/assets/media/tretmani/tretmanlicav4.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}
#card-2 {
  background-image: url("/assets/media/tretmani/tretmanitela.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}
#card-3 {
  background-image: url("/assets/media/tretmani/laserskaepilacija.webp");
  background-position: center center;
  background-position: 59% 43%;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px; 
}
#card-4 {
  background-image: url("/assets/media/tretmani/endosfera.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}
#card-5 {
  background-image: url("/assets/media/tretmani/emsculpt.jpg");
   background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}
#card-6 {
  background-image: url("/assets/media/tretmani/bodyspace2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
  background-position: 82% 41%;
}
#card-7 {
  background-image: url("/assets/media/tretmani/dermapen.webp");
   background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}

#card-8 {
  background-image: url("/assets/media/tretmani/plazmapen.webp");
   background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}
#card-9 {
  background-image: url("/assets/media/tretmani/microblading.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px; 
}






.card-placeholder {
  height: 70%;
  display: flex;
  align-items: flex-start;
  padding: 2rem;
}

.card-label {
 
background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 20px;
  color: #272523; 
  border: 1px solid #141414a4; 
}

/* Card description panel — testimonial-inspired clean overlay style */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 0 0 16px 16px;
  transition: transform var(--transition-medium);
}

/* Description text — white with subtle shadow like testimonials */
.card-description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.2px;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


/* Clamp text on mobile for cleaner layout */
@media (max-width: 768px) {
  .card-description {
    font-size: 0.9rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Bottom gradient overlay to improve text contrast — inspired by testimonials */
.card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 0 0 16px 16px;
  transition: background 0.4s ease;
}




.read-more-button {
  background-color: #2d2d2d;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 50%;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.read-more-button:hover {
  background-color: #ffffff;
  color: #2d2d2d;
  transform: none; 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.read-more-button::after {
  color: inherit;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.read-more-button:hover::after {
  transform: translateX(4px);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 2rem;
  gap: 1.5rem;
  width: 100%;
}

/* Position the 'read more' button at the far right within controls */
.carousel-controls .read-more-button {
  margin-left: auto; /* gura dugme do desnog kraja */
  width: auto; /* manja širina u kontrolama */
  padding: 1.0rem 1rem; /* kompaktnije dugme */
}

/* Raspored: strelice levo, zatim paginacija, dugme skroz desno */
.carousel-controls .slider-arrows {
  order: 1;
}
.carousel-controls .pagination-desktop {
  order: 2;
}
.carousel-controls .pagination-mobile {
  order: 3;
}
.carousel-controls .read-more-button {
  order: 4;
}

.slider-arrows {
  display: flex;
  gap: 0.75rem;
}

#prev-btn-1,#next-btn-1, #prev-btn-2,
#next-btn-2 {
  margin-left: 0.375rem;
}

.arrow-btn {
  background-color: #2c2c2c;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.arrow-btn:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.arrow-btn:hover:not(:disabled) {
  background-color: #000;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.pagination-desktop {
  font-size: 1rem;
  font-weight: 500;
  color: #2c2c2c;
  display: none;
  min-width: 60px;
}

.pagination-desktop span {
  font-weight: 600;
}

.pagination-mobile {
  display: none;
}

.progress-bar-container {
  width: 200px;
  height: 3px;
  background-color: #e0e0e0;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #2c2c2c 0%, #000 100%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.tagline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  color: #666;
  line-height: 1.6;
}

.image-section {
    height: 1100px;
   
  }

@media (max-width: 991px) {
  .page-layout {
    flex-direction: column;
    min-height: auto;
  }

  .page-layout.reverse {
    flex-direction: column;
  }

  .image-section {
    height: 1100px;
    display: none;
  }

  .content-section {
    padding: 3rem 1.5rem;
  }

  h1.title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }

  .title-sub {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }

  .card {
    min-width: 100%;
    margin-right: 0;
    height: 420px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    border-radius: 20px;
    box-shadow: none; /* Uklonjena senka za mobilne */
  }

  .card:hover {
    transform: translateY(-4px);
  }

  .card-label {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: none !important; /* Potpuno uklonjen prelaz na mobilnim */
  }

  .read-more-button {
    background-color: white;
    color: #2c2c2c;
  }

  .read-more-button:hover {
    background-color: #f5f5f5;
    color: #000;
  }

  .carousel-controls {
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
  }

  /* Na mobilnom zadržavamo dugme na desnom kraju reda */
  .carousel-controls .read-more-button {
    order: 4;
    margin-left: auto;
    width: auto;
  }

  /* Redosled i na mobilnom: strelice levo, paginacija odmah pored */
  .carousel-controls .slider-arrows {
    order: 1;
  }
  .carousel-controls .pagination-desktop {
    order: 2;
  }
  .carousel-controls .pagination-mobile {
    order: 3;
  }

  .slider-arrows {
    order: 2;
  }

  .pagination-desktop {
    display: block;
    order: 1;
  }

  .pagination-mobile {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    order: 3;
  }

  .progress-bar-container {
    width: 100%;
  }

  .tagline {
    margin-top: 2rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .hero-image {
    display: none;
  }

  .content-section {
    padding: 1.0rem 1.25rem;
  }

  h1.title {
    font-size: 2.8rem;
  }

  .title-sub {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }

  .card {
    height: 500px; /* Povećano sa 380px na 500px */
    border-radius: 16px;
  }

  .card-placeholder {
    padding: 1.5rem;
  }

  .card-info {
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    padding: 1.1rem 1.35rem;
    border-radius: 8px;
  }

  .card-description {
    font-size: 0.825rem;
    line-height: 1.5;
  }

  .product-name {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .read-more-button {
    padding: 0.3rem 0.2rem;
    font-size: 0.7rem;
  }

  .arrow-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }


  .pagination-desktop {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-image {
    display: none;
  }

  h1.title {
    font-size: 2.2rem;
  }

  .title-sub {
    font-size: 2.2rem;
  }

  .card {
    height: 450px; /* Povećano sa 350px na 450px */
  }

  .card-info {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
  }

  .card-description {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .tagline {
    font-size: 0.65rem;
  }
}

/* ===== DOCTOR ABOUT SECTION ===== */
.doctor-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.doctor-about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fdfbfa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.doctor-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(205, 10, 133, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

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

.doctor-about-bg {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  border: 1px solid rgba(201, 154, 141, 0.15);
}

.doctor-about-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(248, 237, 238, 0.6),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.col-lg-6 {
  flex: 1;
  min-width: 300px;
}



.doctor-about-content h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.ceo {
  display: inline-block;
  color: #cd0a85;
  font-size: 16px;
  margin-bottom: 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  background: linear-gradient(
    135deg,
    rgba(248, 237, 238, 0.6),
    rgba(201, 154, 141, 0.15)
  );
  border-radius: 20px;
  border: 1px solid rgba(205, 10, 133, 0.2);
}

.doctor-about-content p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 400;
}

.doctor-about-content p:first-of-type {
  font-size: 16.5px;
  color: #444;
  font-weight: 500;
}

.signicher {
  margin: 40px 0 35px 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.signicher:hover {
  opacity: 1;
}

.signicher svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.doctor-about-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.default-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: white;
  padding: 16px 38px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.default-btn:hover::before {
  left: 100%;
}

.default-btn:hover {
  transform: translateY(-3px);
}

.default-btn i {
  font-size: 18px;
}

.call-us {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(248, 237, 238, 0.5);
  border-radius: 25px;
  border: 1px solid rgba(201, 154, 141, 0.2);
  transition: all 0.3s ease;
}

.call-us:hover {
  background: rgba(248, 237, 238, 0.8);
  border-color: rgba(201, 154, 141, 0.4);
  transform: translateY(-2px);
}

.call-us span {
  color: #777;
  font-weight: 500;
  font-size: 14px;
}

.call-us a {
  color: #2d2d2d;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.call-us a:hover {
  color: #cd0a85;
}

.doctor-about-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor-circle-wrapper {
  position: relative;
  width: 500px;
  height: 520px;
}

.doctor-main-img {
  position: relative;
  z-index: 3;
  width: 500px;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.4s ease;
}

.doctor-main-img:hover {
  transform: scale(1.02);
}

.doctor-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  /* Pozicioniranje slike Edine - možeš menjati */
  /* Primeri: center center | center top | 50% 30% */
  object-position: center center;
}

.doctor-main-img:hover img {
  transform: scale(1.05);
}

.circle-bg {
  position: absolute;
  border-radius: 40px;
  transition: all 0.6s ease;
}

.circle-bg-1 {
  width: 550px;
  height: 570px;
  background: linear-gradient(
    135deg,
    rgba(248, 237, 238, 0.6),
    rgba(201, 154, 141, 0.25)
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 1px solid rgba(201, 154, 141, 0.3);
}

.circle-bg-2 {
  width: 600px;
  height: 620px;
  background: linear-gradient(
    135deg,
    rgba(248, 237, 238, 0.4),
    rgba(201, 154, 141, 0.15)
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border: 1px solid rgba(201, 154, 141, 0.2);
}

.doctor-circle-wrapper:hover .circle-bg-1 {
  transform: translate(-50%, -50%) rotate(5deg);
}

.doctor-circle-wrapper:hover .circle-bg-2 {
  transform: translate(-50%, -50%) rotate(-5deg);
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.shape-1 {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(248, 237, 238, 0.8) 0%,
    rgba(201, 154, 141, 0.6) 100%
  );
  top: 8%;
  right: 8%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(201, 154, 141, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.shape-2 {
  width: 55px;
  height: 55px;
  background: linear-gradient(
    135deg,
    rgba(205, 10, 133, 0.15) 0%,
    rgba(205, 10, 133, 0.25) 100%
  );
  bottom: 12%;
  left: 5%;
  animation: float 5s ease-in-out infinite 1s;
  box-shadow: 0 8px 20px rgba(205, 10, 133, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.shape-3 {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(248, 237, 238, 0.9) 0%,
    rgba(201, 154, 141, 0.5) 100%
  );
  top: 45%;
  right: 2%;
  animation: float 7s ease-in-out infinite 2s;
  box-shadow: 0 8px 20px rgba(201, 154, 141, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

@media (max-width: 991px) {
  .doctor-about-section {
    padding: 80px 0;
  }

  .doctor-about-bg {
    padding: 60px 40px;
    border-radius: 30px;
  }

  .doctor-about-content h2 {
    font-size: 38px;
    text-align: center;
  }

  .ceo {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .row {
    flex-direction: column;
    gap: 50px;
  }

  .doctor-about-content p {
    text-align: center;
    font-size: 15px;
  }

  .signicher {
    text-align: center;
  }

  .doctor-about-btn {
    justify-content: center;
  }

  .doctor-circle-wrapper {
    width: 420px;
    height: 450px;
  }

  .doctor-main-img {
    width: 420px;
    height: 450px;
    border-radius: 30px;
  }

  .circle-bg {
    border-radius: 35px;
  }

  .circle-bg-1 {
    width: 460px;
    height: 490px;
  }

  .circle-bg-2 {
    width: 500px;
    height: 530px;
  }

  .shape-1 {
    width: 60px;
    height: 60px;
  }

  .shape-2 {
    width: 48px;
    height: 48px;
  }

  .shape-3 {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 576px) {
  .doctor-about-section {
    padding: 60px 0;
  }

  .doctor-about-bg {
    padding: 40px 25px;
    border-radius: 25px;
  }

  .doctor-about-content h2 {
    font-size: 32px;
  }

  .ceo {
    font-size: 14px;
    padding: 5px 14px;
  }

  .doctor-about-content p {
    font-size: 14.5px;
  }

  .doctor-about-content p:first-of-type {
    font-size: 15px;
  }

  .doctor-about-btn {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .default-btn,
  .call-us {
    width: 100%;
    justify-content: center;
  }

  .doctor-circle-wrapper {
    width: 320px;
    height: 360px;
  }

  .doctor-main-img {
    width: 320px;
    height: 360px;
    border-radius: 25px;
  }

  .circle-bg {
    border-radius: 30px;
  }

  .circle-bg-1 {
    width: 350px;
    height: 390px;
  }

  .circle-bg-2 {
    width: 380px;
    height: 420px;
  }

  .shape-1 {
    width: 50px;
    height: 50px;
  }

  .shape-2 {
    width: 40px;
    height: 40px;
  }

  .shape-3 {
    width: 32px;
    height: 32px;
  }
}

/* ===== TESTIMONIAL & IMAGE LOOP SECTION ===== */
/* ===== TESTIMONIALS SECTION - IMAGE BASED DESIGN ===== */
.testimonials {
 
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  background: transparent;
}

.testimonials::before {
  display: none;
}

.testimonials-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 40px;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.testimonials-subtitle {
  font-size: 1.15rem;
  color: #2d2d2d;
  font-weight: 400;
}

/* Scroll Wrapper */
.testimonials-scroll-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  padding: 20px 0 100px 0;
}

/* UKLONI GRADIENT OVERLAYS - Crni overlay sa strana */
.testimonials-scroll-wrapper::before,
.testimonials-scroll-wrapper::after {
  display: none;
}

/* Track */
.testimonials-track {
  display: flex;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 0 40px; /* Povećan horizontalni padding sa 10px na 40px */
}

/* Image Card - Vertical Design (Image Top, Text Bottom) */
.testimonial-image-card {
  position: relative;
  width: 320px;
  height: auto;
  flex-shrink: 0;
  margin: 0 15px; /* Povećan margin sa 10px na 15px */
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 180px auto;
  box-shadow: 0 8px 32px rgba(63, 63, 63, 0.082);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.testimonial-bg-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  grid-column: 1;
  grid-row: 1;
}

.testimonial-image-card:hover .testimonial-bg-image {
  transform: scale(1.08);
}

/* Overlay - Now as Content Area Below Image */
.testimonial-overlay {
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  padding: 18px 16px 24px; /* Povećan donji padding sa 20px na 24px */
  grid-column: 1;
  grid-row: 2;
  border-top: 1px solid rgba(201, 154, 141, 0.15);
  min-height: 200px; /* Povećana minimalna visina */
}

.testimonial-image-card:hover .testimonial-overlay {
  background: #ffffff;
}

/* Content */
.testimonial-content {
  color: #2d2d2d;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stars */
.testimonial-stars {
  color: #c99a8d;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  flex-shrink: 0;
}

/* Quote - NO CLAMP, full text visible */
.testimonial-quote {
  font-size: 0.8rem;
  line-height: 1.65;
  color: #3a3a3a;
  margin-bottom: 12px;
  font-weight: 400;
  flex: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-height: 90px; /* Osigurava dovoljno prostora za tekst */
}

/* Author - Always visible at bottom */
.testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding-top: 12px; /* Povećan padding sa 10px na 12px */
  padding-bottom: 2px; /* Dodat dodatni padding na dnu */
  margin-top: auto;
  border-top: 1px solid rgba(201, 154, 141, 0.25);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.author-service {
  font-size: 0.75rem;
  color: #c99a8d;
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
}

.author-service::before {
  margin: 0 4px;
}

/* Animation - Smooth Infinite Loop */
@keyframes testimonial-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

.testimonials-track.animate-scroll {
  animation: testimonial-scroll 80s linear infinite;
  will-change: transform;
}

/* Pauziranje samo na desktop uređajima (hover) */
@media (hover: hover) and (pointer: fine) {
  .testimonials-track.animate-scroll:hover {
    animation-play-state: paused;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials {
    padding: 80px 0 50px;
  }

  .testimonials-title {
    font-size: 2.4rem;
  }

  .testimonials-track {
    padding: 0 30px; /* Manji padding na tabletu */
  }

  .testimonial-image-card {
    width: 280px;
    grid-template-rows: 160px auto;
    margin: 0 12px; /* Povećan margin sa 8px na 12px */
  }

  .testimonial-bg-image {
    height: 160px;
  }

  .testimonial-overlay {
    padding: 12px 10px 16px; /* Povećan donji padding sa 14px na 16px */
    min-height: 180px; /* Povećana visina za tablet */
  }

  .testimonial-quote {
    font-size: 0.75rem;
    line-height: 1.6;
    min-height: 80px;
  }

  .author-name {
    font-size: 0.725rem;
  }

  .author-service {
    font-size: 0.675rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0 40px;
  }

  .testimonials-header {
    margin-bottom: 40px;
    padding: 0 24px;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-track {
    padding: 0 25px; /* Dobar padding za mobilne */
  }

  .testimonial-image-card {
    width: calc(100vw - 80px);
    max-width: 340px;
    grid-template-rows: 190px auto;
    margin: 0 12px; /* Povećan margin sa 8px na 12px */
  }

  .testimonial-bg-image {
    height: 190px;
  }

  .testimonial-overlay {
    padding: 18px 16px 24px; /* Povećan donji padding sa 20px na 24px */
    min-height: 220px; /* Povećana visina za mobilne */
  }

  .testimonial-stars {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .testimonial-quote {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 12px;
    min-height: 100px; /* Više prostora za tekst na mobilnim */
  }

  .author-name {
    font-size: 0.75rem;
  }

  .author-service {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .testimonials-header {
    padding: 0 20px;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonials-track {
    padding: 0 20px; /* Optimizovan padding za male ekrane */
  }

  .testimonial-image-card {
    width: calc(100vw - 70px);
    max-width: 300px;
    margin: 0 10px; /* Povećan margin sa 6px na 10px */
    grid-template-rows: 170px auto;
  }

  .testimonial-bg-image {
    height: 170px;
  }

  .testimonial-overlay {
    padding: 16px 14px 22px; /* Povećan donji padding sa 18px na 22px */
    min-height: 210px; /* Adekvatna visina za male ekrane */
  }

  .testimonial-quote {
    font-size: 0.775rem;
    line-height: 1.6;
    min-height: 95px;
  }

  .author-name {
    font-size: 0.7rem;
  }

  .author-service {
    font-size: 0.65rem;
  }
}

/* Remove old testimonial styles */
.testimonial-loop-container,
.header-section,
.image-loop-outer,
.image-loop-wrapper,
.image-card,
.scrolling-wrapper-outer,
.scrolling-wrapper,
.testimonial-card,
.rating-stars,
.star-icon,
.testimonial-text,
.author-info,
.avatar,
.author-details,
.fade-overlay,
.testimonial-content-wrapper {
  display: none !important;
}

/* ===== SERVICE EXCELLENCE SECTION WITH FAQ ===== */
/* ===== FAQ SECTION - PREMIUM DESIGN ===== */
.faq-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 170px 5%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  overflow: hidden;
}

/* Decorative Background */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(201,154,141,0.03), transparent 60%);
  pointer-events: none;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE - FAQ Content */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201,154,141,0.1);
  color: #c99a8d;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  align-self: flex-start;
  border: 1px solid rgba(201,154,141,0.2);
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.faq-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  max-width: 550px;
  font-weight: 300;
}

/* FAQ Accordion - Premium Style */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.faq-item:hover {
  border-color: rgba(201,154,141,0.3);
  box-shadow: 0 8px 30px rgba(201,154,141,0.12);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: rgba(201,154,141,0.4);
  box-shadow: 0 12px 40px rgba(201,154,141,0.15);
}

.faq-question {
  width: 100%;
  padding: 20px 32px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #c99a8d;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  color: #c99a8d;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 28px;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: #555;
  font-weight: 300;
}

.faq-answer a {
  color: #c99a8d;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.faq-answer a:hover {
  opacity: 0.7;
}


.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,154,141,0.3);
}

.cta-button::after {
  content: '→';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover::after {
  transform: translateX(5px);
}

@media (max-width: 480px) {
    .cta-button {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
    }
}

/* RIGHT SIDE - Video Carousel */
.service-video-side {
  position: relative;
}

.video-carousel-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(201, 154, 141, 0.2);
}

.video-carousel-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 125%; /* 4:5 aspect ratio */
  background: #f0f0f0;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.video-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.video-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  overflow: hidden;
}

/* Preloader za video thumbnail */
.video-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.video-content.loaded::before {
  opacity: 0;
}

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

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
  position: relative;
  z-index: 1;
}

/* Osiguraj da se thumbnail prikazuje na mobilnim uređajima */
@media (max-width: 768px) {
  .service-video {
    background-color: #000;
    object-fit: cover;
  }
  
  /* Omogući preload metadata za prikazivanje prvog frejma */
  .video-slide video {
    background: #000;
  }
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg circle {
  fill: rgba(201, 154, 141, 0.616); 
  transition: fill 0.3s ease;
}

.video-play-btn:hover svg circle {
  fill: rgba(201, 154, 141, 0.616); 
}

.video-play-btn.playing {
  opacity: 0;
  pointer-events: none;
}

/* Carousel Navigation */
.video-carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-nav-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(201, 154, 141, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #c99a8d;
}

.carousel-nav-btn:hover {
  background: #c99a8d;
  border-color: #c99a8d;
  color: #ffffff;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(201, 154, 141, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: #c99a8d;
  width: 32px;
  border-radius: 5px;
}

.dot:hover {
  background: rgba(201, 154, 141, 0.6);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .faq-container {
    gap: 60px;
  }

  .faq-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 80px 4%;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .service-video-side {
    order: 1;
  }

  .faq-content {
    gap: 40px;
    order: 2;
  }

  .faq-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .video-carousel-wrapper {
    padding-bottom: 100%;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 5%;
  }

  .faq-container {
    gap: 50px;
  }

  .faq-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .faq-description {
    font-size: 1rem;
  }

  .faq-question {
    padding: 22px 24px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 22px;
  }

  .video-carousel-nav {
    bottom: 16px;
    padding: 10px 20px;
    gap: 16px;
  }

  .carousel-nav-btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 5%;
  }

  .faq-content {
    gap: 35px;
  }

  .faq-header {
    gap: 15px;
  }

  .faq-badge {
    padding: 6px 16px;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
  }

  .faq-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .faq-description {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .faq-accordion {
    gap: 12px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 0.95rem;
  }

  .faq-icon {
    margin-left: 12px;
    width: 20px;
    height: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .faq-answer p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .cta-button {
    padding: 16px 35px;
    font-size: 0.85rem;
  }

  .video-carousel-wrapper {
    border-radius: 16px;
  }

  .video-carousel-nav {
    bottom: 12px;
    padding: 8px 16px;
    gap: 12px;
  }

  .carousel-nav-btn {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 380px) {
  .faq-title {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.9rem;
  }
}

/* ===== TESTIMONIAL & IMAGE LOOP SECTION ===== */
/* ===== TESTIMONIALS SECTION - IMAGE BASED DESIGN ===== */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.process-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Gallery Grid - Modern Masonry Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 60px;
}

/* Mobile First - Different Card Heights for Visual Interest */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile: Varied Heights for Better Visual Hierarchy */
.gallery-item:nth-child(1) {
  min-height: 400px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  min-height: 320px;
}

.gallery-item:nth-child(4) {
  min-height: 360px;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  min-height: 300px;
}

.gallery-item:nth-child(7) {
  min-height: 380px;
}

.gallery-item:nth-child(8) {
  min-height: 320px;
}

/* Subtle hover for mobile (touch devices) */
@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
}

/* Tablet: 2 columns */
@media (min-width: 640px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-item {
    min-height: 320px !important;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    min-height: 380px !important;
  }

  .gallery-item:nth-child(7) {
    min-height: 360px !important;
  }
}

/* Desktop: 3 columns with masonry effect */
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
  }

  .gallery-item {
    min-height: auto !important;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
}

/* Media Container */
.gallery-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.gallery-image,
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle zoom on desktop hover only */
@media (min-width: 1024px) and (hover: hover) {
  .gallery-item:hover .gallery-image,
  .gallery-item:hover .gallery-video {
    transform: scale(1.08);
  }
}

/* Prevent zoom on mobile to avoid performance issues */
@media (max-width: 1023px) {
  .gallery-image,
  .gallery-video {
    transition: none;
    transform: scale(1);
  }
}

/* Overlay - Always visible on mobile for better UX */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.3s ease;
}

/* Desktop: Show overlay on hover */
@media (min-width: 1024px) and (hover: hover) {
  .gallery-overlay {
    opacity: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      transparent 100%
    );
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
}

/* Content - Always visible on mobile */
.gallery-content {
  color: white;
  transform: translateY(0);
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop: Animate content on hover */
@media (min-width: 1024px) and (hover: hover) {
  .gallery-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  .gallery-item:hover .gallery-content {
    transform: translateY(0);
  }
}

.gallery-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.gallery-link svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gallery-link:hover svg {
  transform: translateX(4px);
}

/* Larger touch targets for mobile */
@media (max-width: 1023px) {
  .gallery-link {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .gallery-title {
    font-size: 1.5rem;
  }
  
  .gallery-description {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* CTA Section */
.process-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8edee 0%, #e8d5d6 100%);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(248, 237, 238, 0.4);
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

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

.process-cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.process-cta-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--text-dark);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-cta-btn:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.process-cta-btn svg {
  transition: transform 0.3s ease;
}

.process-cta-btn:hover svg {
  transform: scale(1.1);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .process-container {
    padding: 0 30px;
  }

  .process-title {
    font-size: 3rem;
  }
}

@media (max-width: 1023px) {
  .process-gallery-section {
    padding: 80px 0;
  }

  .process-container {
    padding: 0 20px;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-badge {
    font-size: 0.75rem;
    padding: 6px 20px;
  }

  .process-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }

  .process-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .gallery-grid {
    margin-bottom: 40px;
  }

  /* Ensure content is always visible on mobile/tablet */
  .gallery-overlay {
    padding: 20px;
  }

  .gallery-content {
    transform: translateY(0);
  }

  .process-cta {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .process-cta-content h3 {
    font-size: 1.9rem;
  }

  .process-cta-content p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .process-cta-btn {
    padding: 16px 32px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
    max-width: 400px;
  }
}

@media (max-width: 639px) {
  .process-gallery-section {
    padding: 60px 0;
  }

  .process-container {
    padding: 0 16px;
  }

  .process-header {
    margin-bottom: 32px;
  }

  .process-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .process-subtitle {
    font-size: 0.95rem;
  }

  .gallery-grid {
    gap: 14px;
    margin-bottom: 32px;
  }

  .gallery-overlay {
    padding: 18px;
  }

  .gallery-title {
    font-size: 1.35rem;
  }

  .gallery-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 12px;
  }

  .gallery-category {
    font-size: 0.65rem;
    padding: 3px 10px;
    margin-bottom: 6px;
  }

  .gallery-link {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .process-cta {
    padding: 32px 20px;
  }

  .process-cta-content h3 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .process-cta-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .process-cta-btn {
    font-size: 0.9rem;
  }
}

/* Smooth scroll behavior for anchors */
.gallery-link,
.process-cta-btn {
  scroll-behavior: smooth;
}

/* Video specific styles */
.gallery-video {
  pointer-events: none;
}

/* Accessibility improvements */
.gallery-item:focus-visible {
  outline: 3px solid var(--accent-rose);
  outline-offset: 4px;
}

.gallery-link:focus-visible,
.process-cta-btn:focus-visible {
  outline: 3px solid var(--text-dark);
  outline-offset: 4px;
}

/* Prevent text selection on touch devices during interaction */
@media (max-width: 1023px) {
  .gallery-item {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .gallery-link,
  .process-cta-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

/* Improve readability on small screens */
@media (max-width: 375px) {
  .gallery-title {
    font-size: 1.25rem;
  }

  .gallery-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .gallery-category {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .gallery-link {
    padding: 9px 14px;
    font-size: 0.8rem;
  }
}

/* Optimize for iPhone SE and similar small devices */
@media (max-width: 375px) and (max-height: 667px) {
  .gallery-item:nth-child(1) {
    min-height: 350px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(8) {
    min-height: 280px;
  }

  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) {
    min-height: 320px;
  }

  .process-title {
    font-size: 1.75rem;
  }

  .process-subtitle {
    font-size: 0.9rem;
  }
}

/* Loading skeleton animation (optional enhancement) */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.gallery-item.loading {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Safe area insets for devices with notches */
@supports (padding: max(0px)) {
  .process-container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }

  @media (max-width: 639px) {
    .process-container {
      padding-left: max(16px, env(safe-area-inset-left));
      padding-right: max(16px, env(safe-area-inset-right));
    }
  }
}

/* ===== EDITORIAL SHOWCASE SEKCIJA ===== */
/* ==================================================================
   EDITORIAL SHOWCASE - NOVO MODERNIZOVANI DIZAJN
   ================================================================== */

.editorial-showcase {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
  overflow: hidden;
}

/* Animated Background Pattern */
.editorial-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(201,154,141,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: editorialFloat 60s infinite linear;
  pointer-events: none;
  z-index: 1;
}

@keyframes editorialFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(5deg); }
}

/* Main Container */
.editorial-showcase-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 0 5%;
  z-index: 2;
}

/* LEFT SIDE - Hero Image */
.editorial-hero-image-container {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-hero-main-product {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-product-image {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.12));
  transition: opacity 0.4s ease;
}

/* Thumbnail Navigation - Clean & Simple */
.editorial-thumbnail-nav {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}

.editorial-thumbnail {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
  opacity: 0.6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.editorial-thumbnail:hover {
  opacity: 0.85;
  border-color: #c99a8d;
  box-shadow: 0 4px 12px rgba(201,154,141,0.15);
}

.editorial-thumbnail.active {
  opacity: 1;
  border-color: #c99a8d;
  border-width: 2.5px;
  box-shadow: 0 6px 16px rgba(201,154,141,0.2);
}

.editorial-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* RIGHT SIDE - Content */
.editorial-hero-content {
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  animation: editorialFadeInRight 1s ease-out;
}

@keyframes editorialFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.editorial-brand-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c99a8d;
  font-weight: 300;
  margin-bottom: -20px;
  font-family: 'Inter', sans-serif;
}

.editorial-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  color: #1a1a1a;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.editorial-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  color: #666;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.editorial-hero-description {
  font-size: 1rem;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
  max-width: 520px;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
}

/* Product Features */
.editorial-product-features {
  display: flex;
  gap: 50px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.editorial-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.editorial-feature-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.editorial-feature-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* Bottom Navigation Dots */
.editorial-progress-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.editorial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.editorial-dot:hover {
  background: rgba(201,154,141,0.5);
  transform: scale(1.3);
}

.editorial-dot.active {
  background: #c99a8d;
  width: 32px;
  border-radius: 10px;
}

/* Decorative Elements */
.editorial-decor-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,141,0.06), transparent 70%);
  pointer-events: none;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  animation: editorialPulse 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes editorialPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

/* GRID PROIZVODA - UKLONJENO (više ne koristimo) */

/* ANIMACIJE */
@keyframes editorialFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes editorialScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .editorial-showcase-container {
    grid-template-columns: 50% 50%;
  }

  .editorial-thumbnail-nav {
    left: -50px;
  }

  .editorial-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    gap: 14px;
  }

  .editorial-hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
  }
}

@media (max-width: 1024px) {
  .editorial-showcase-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 4%;
    height: auto;
    min-height: 100vh;
    gap: 40px;
  }

  .editorial-hero-image-container {
    height: auto;
    min-height: 60vh;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px;
    perspective: none;
  }

  .editorial-hero-main-product {
    max-width: 85%;
    height: auto;
    margin-bottom: 30px;
  }

  .editorial-product-image {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .editorial-hero-content {
    order: 2;
    padding: 40px 5% 80px;
    text-align: center;
    align-items: center;
  }

  .editorial-hero-description {
    max-width: 600px;
  }

  /* Thumbnails na dnu, centrirani */
  .editorial-thumbnail-nav {
    position: static;
    flex-direction: row;
    transform: none;
    justify-content: center;
    gap: 14px;
    order: 3;
    width: 100%;
    padding: 0 20px;
  }

  .editorial-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    opacity: 0.6;
  }

  .editorial-thumbnail.active {
    opacity: 1;
  }

  .editorial-thumbnail:hover {
    opacity: 0.85;
  }

  .editorial-product-features {
    justify-content: center;
  }

  .editorial-progress-dots {
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .editorial-showcase {
    height: auto;
    min-height: 100vh;
  }

  .editorial-showcase-container {
    gap: 30px;
  }

  .editorial-hero-image-container {
    min-height: 55vh;
    padding: 30px 0 15px;
  }

  .editorial-hero-main-product {
    max-width: 90%;
  }

  .editorial-product-image {
    max-width: 450px;
  }

  .editorial-hero-content {
    padding: 40px 6% 70px;
    gap: 28px;
  }

  .editorial-brand-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }

  .editorial-hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .editorial-hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .editorial-hero-description {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .editorial-product-features {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }

  .editorial-thumbnail-nav {
    gap: 12px;
    padding: 0 15px;
  }

  .editorial-thumbnail {
    width: 56px;
    height: 56px;
  }

  .editorial-decor-circle {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .editorial-showcase-container {
    padding: 0 5%;
    gap: 25px;
  }

  .editorial-hero-image-container {
    min-height: 50vh;
    padding: 25px 0 10px;
  }

  .editorial-hero-main-product {
    max-width: 95%;
  }

  .editorial-product-image {
    max-width: 380px;
  }

  .editorial-hero-content {
    padding: 35px 5% 60px;
    gap: 24px;
  }

  .editorial-hero-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .editorial-hero-subtitle {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  .editorial-hero-description {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .editorial-thumbnail-nav {
    gap: 10px;
    padding: 0 10px;
  }

  .editorial-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .editorial-product-features {
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .editorial-feature-label {
    font-size: 0.65rem;
  }

  .editorial-feature-value {
    font-size: 1rem;
  }

  .editorial-progress-dots {
    bottom: 25px;
    gap: 10px;
  }

  .editorial-dot {
    width: 7px;
    height: 7px;
  }

  .editorial-dot.active {
    width: 28px;
  }
}

/* ==================================================================
   END OF EDITORIAL SHOWCASE STYLES
   ================================================================== */

/* ==================================================================
   GDPR COOKIE CONSENT BANNER
   ================================================================== */

.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 420px;
    z-index: 10000;
    transform: translateY(120%) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(201, 154, 141, 0.1);
}

.cookie-consent.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-text h3 {
    font-size: 1.1rem;
    color: var(--accent-rose, #c99a8d);
    margin: 0 0 0.5rem 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.cookie-accept {
    background: linear-gradient(135deg, #c99a8d, #b88a7d);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 154, 141, 0.25);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 154, 141, 0.35);
}

.cookie-accept:active {
    transform: translateY(0);
}

.cookie-decline {
    background: rgba(0, 0, 0, 0.03);
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-decline:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        padding: 1.25rem;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        bottom: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        border-radius: 12px;
    }
}

/* ==================================================================
   END OF GDPR COOKIE CONSENT BANNER
   ================================================================== */



