@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #252525;
  overflow-x: hidden;
}

/* ===========================
   HEADER - FULL WIDTH STICKY
   =========================== */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 5%;
  font-size: 13px;
  background: #faf7f3;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.social-icons,
.contact-info,
.language-flags {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar img {
  height: 16px;
  margin-right: 4px;
}

.top-bar span,
.top-bar a {
  color: #555;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: #904CDF;
}

/* ===== NAV BAR ===== */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  max-width: 1600px;
  margin: 0 auto;
}

.logo img {
  height: 48px;
  transition: transform 0.3s;
}

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

.navigation {
  flex: 1;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links li::before {
  content: none !important;
}

.nav-links > li > a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  cursor: pointer;
}

.nav-links > li > a:hover {
  color: #904CDF;
  background: rgba(144,76,223,0.06);
}

.nav-links > li > a .arrow {
  font-size: 10px;
  transition: transform 0.3s;
  display: inline-block;
}

.nav-links > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* ===== DROPDOWN SUBMENU - MODERN ===== */
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 8px 0;
  list-style: none;
  border: 1px solid rgba(0,0,0,0.06);
}

.submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 3px;
  rotate: 45deg;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-left: 1px solid rgba(0,0,0,0.06);
}

.nav-links > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu li {
  list-style: none;
}

.submenu li::before {
  content: none !important;
}

.submenu li a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #444;
  white-space: nowrap;
  transition: all 0.25s ease;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-left: 3px solid transparent;
  margin: 0 4px;
  border-radius: 0 8px 8px 0;
}

.submenu li a:hover {
  background: rgba(144,76,223,0.06);
  color: #904CDF;
  border-left-color: #904CDF;
  padding-left: 24px;
}

/* ===== ICONS AREA ===== */
.icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icons img {
  height: 20px;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.icons img:hover {
  transform: scale(1.15);
  opacity: 0.7;
}

/* ===== CART BADGE ===== */
.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: linear-gradient(135deg, #904CDF, #6c29c7);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(144,76,223,0.5);
  animation: badgeAppear 0.3s ease;
}

.cart-badge-bounce {
  animation: badgeBounce 0.5s ease;
}

@keyframes badgeAppear {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes badgeBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.5); }
  60% { transform: scale(0.85); }
  100% { transform: scale(1); }
}

/* ===== SEARCH ===== */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 11;
}

#searchInput {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  padding: 10px 40px 10px 16px;
  font-size: 14px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  outline: none;
  background: #fafafa;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
}

#searchInput:focus {
  border-color: #904CDF;
  box-shadow: 0 4px 20px rgba(144,76,223,0.15);
}

#searchBtn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
  outline: none;
}

.search-container.active #searchInput {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-container.active #searchBtn {
  display: block;
}

@media (max-width: 600px) {
  #searchInput {
    width: 160px;
    font-size: 13px;
  }
}

/* ===== BURGER - ANIMATED ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #252525;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: center;
}

.burger:hover span {
  background: #904CDF;
}

/* Burger X animation */
.burger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: #904CDF;
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: #904CDF;
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

/* ===== MOBILE MENU - MODERN ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: white;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 1050;
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-header .logo-small img {
  height: 36px;
}

.close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #904CDF;
  color: white;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  list-style: none;
}

.mobile-nav li {
  list-style: none;
}

.mobile-nav > li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-dropdown-toggle {
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover {
  background: rgba(144,76,223,0.04);
  color: #904CDF;
}

.mobile-dropdown-toggle .arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
  color: #999;
}

.mobile-dropdown-toggle.active .arrow {
  transform: rotate(180deg);
  color: #904CDF;
}

.mobile-nav > li > a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav > li > a:hover {
  background: rgba(144,76,223,0.04);
  color: #904CDF;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  background: #faf8fd;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

.mobile-submenu.open {
  display: flex;
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}

.mobile-submenu a {
  font-size: 14px;
  padding: 11px 24px 11px 40px;
  color: #555;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-submenu a:hover {
  color: #904CDF;
  background: rgba(144,76,223,0.06);
  border-left-color: #904CDF;
  padding-left: 46px;
}

.mobile-menu,
.mobile-overlay {
  display: none;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .contact-info {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu,
  .mobile-overlay {
    display: block;
  }
}

/* ===========================
   BANNER - HERO SECTION
   =========================== */
.banner {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  max-height: 900px;
  background: linear-gradient(135deg, #faf7f3 0%, #f5eef8 40%, #ece4f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
}

.banner-content {
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}

.qwigley-font {
  font-family: 'Qwigley', cursive;
  font-weight: 400;
  font-size: clamp(70px, 10vw, 160px);
  color: #4B0082;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(75,0,130,0.1);
}

.banner-button {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 48px;
  background: linear-gradient(135deg, #4B0082, #7a3dbc);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(75,0,130,0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.banner-button::after {
  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.6s ease;
}

.banner-button:hover::after {
  left: 100%;
}

.banner-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(75,0,130,0.4);
  background: linear-gradient(135deg, #5c0fa0, #8b4ed0);
}

.banner-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.banner-image img {
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .banner {
    padding: 40px 20px;
    min-height: 500px;
    height: auto;
  }
  .banner-button {
    font-size: 16px;
    padding: 14px 36px;
  }
  .banner-image {
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
  }
  .banner-image img {
    height: 280px;
    width: auto;
  }
}

/* ===========================
   PONUDA KARTICE
   =========================== */
.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
}

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

.ponuda-card {
  background: white;
  text-align: center;
  padding: 36px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(144,76,223,0.06);
  position: relative;
  overflow: hidden;
}

.ponuda-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #904CDF, #6c29c7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ponuda-card:hover::before {
  transform: scaleX(1);
}

.ponuda-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(144,76,223,0.15);
  border-color: rgba(144,76,223,0.15);
}

.ikonica {
  width: 80px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.ponuda-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.ponuda-card p {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #904CDF, #6c29c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

@media (max-width: 768px) {
  .wrapper {
    padding: 50px 20px;
  }
  .ponuda-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===========================
   POSEBNE PRILIKE
   =========================== */
.posebne-prilike {
  text-align: center;
  padding: 80px 5%;
  overflow-x: hidden;
}

.posebne-prilike h2 {
  color: #252525;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.posebne-prilike h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #904CDF, #6c29c7);
  margin: 16px auto 40px;
  border-radius: 4px;
}

.prilike-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.prilika {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #2b2b2b;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.prilika:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.prilika::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
  transition: height 0.4s ease;
}

.prilika:hover::before {
  height: 100%;
  background: linear-gradient(to top, rgba(75,0,130,0.6), rgba(0,0,0,0.2));
}

.prilika img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.prilika:hover img {
  transform: scale(1.12);
}

.prilika p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  text-decoration: none !important;
}

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

/* ===========================
   IZDVAJAMO - SWIPER
   =========================== */
.izdvajamocontainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #252525;
  text-align: left;
  position: relative;
  display: inline-block;
}

.title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #904CDF, #6c29c7);
  margin-top: 10px;
  border-radius: 4px;
}

.swiper {
  position: relative;
  padding: 0 40px;
  overflow: visible;
}

.swiper-slide {
  overflow: visible;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: #904CDF;
  border: 2px solid rgba(144,76,223,0.15);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, #904CDF, #6c29c7);
  box-shadow: 0 8px 28px rgba(144,76,223,0.35);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 18px;
}

.product-slide-img {
  object-fit: cover;
  width: 100%;
  height: 260px;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.swiper-slide:hover .product-slide-img {
  transform: scale(1.04);
}

.swiper-slide .product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.swiper-slide .name {
  margin: 12px 0 4px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.swiper-slide .price {
  font-weight: 600;
  color: #666;
  font-size: 15px;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .izdvajamocontainer {
    padding: 50px 20px;
  }
}

/* ===========================
   SERVICES / STA NUDIMO
   =========================== */
.services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  padding: 40px 24px;
  border-radius: 20px;
  background: white;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(144,76,223,0.15);
}

.service .icon {
  width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.service p {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ===========================
   RECENZIJE / TESTIMONIALS
   =========================== */
.testimonial-carousel {
  width: 100%;
  background: url('img/backgroundrecenzije.png') center/cover no-repeat;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.testimonial-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(75,0,130,0.3);
}

.testimonial {
  position: absolute;
  text-align: center;
  color: white;
  max-width: 800px;
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: scale(0.95);
  z-index: 1;
}

.testimonial.active {
  opacity: 1;
  position: relative;
  transform: scale(1);
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.8);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.testimonial h2 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 600;
}

.testimonial p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 0 20px;
  opacity: 0.95;
}

.stars img {
  width: 26px;
  height: 26px;
  margin: 0 2px;
}

@media (max-width: 768px) {
  .testimonial-carousel {
    min-height: auto;
    padding: 60px 20px;
  }
  .testimonial p { font-size: 15px; }
  .testimonial h2 { font-size: 20px; }
}

/* ===========================
   BLOGOVI
   =========================== */
.blog-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #252525;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #904CDF, #6c29c7);
  margin: 12px auto 0;
  border-radius: 4px;
}

.blogs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: white;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.06);
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #252525;
  margin: 20px 20px 8px;
  text-align: left;
}

.blog-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0 20px 20px;
  text-align: left;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===========================
   PRETRAGA / SEARCH PAGE
   =========================== */
.shop-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 80px 5%;
}

.filters {
  width: 250px;
  padding: 24px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.filters h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #252525;
  font-weight: 600;
}

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

.filter-group h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #555;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group ul {
  list-style: none;
  padding: 0;
}

.filter-group ul li {
  margin-bottom: 6px;
}

.filter-group ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: all 0.2s;
  display: block;
  padding: 4px 0;
}

.filter-group ul li a:hover {
  color: #904CDF;
  padding-left: 6px;
}

.filter-group input[type="number"] {
  padding: 10px 12px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
}

.filter-group input[type="number"]:focus {
  border-color: #904CDF;
  outline: none;
}

.filter-group button {
  padding: 10px;
  background: linear-gradient(135deg, #904CDF, #6c29c7);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.filter-group button:hover {
  box-shadow: 0 4px 16px rgba(144,76,223,0.3);
  transform: translateY(-1px);
}

.filter-group form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products {
  flex: 1;
}

.products h2 {
  padding-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product {
  padding-bottom: 16px;
  transition: all 0.3s ease;
}

.product a {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product a:hover {
  transform: translateY(-5px);
}

.product img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 250px;
  transition: transform 0.5s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product .name {
  margin: 12px 0 4px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.product .price {
  color: #666;
  font-weight: 600;
  font-size: 15px;
}

.product a:hover .name {
  color: #904CDF;
}

.pagination {
  margin-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s;
}

.pagination a.active {
  background: linear-gradient(135deg, #904CDF, #6c29c7);
  color: #fff;
  border-color: transparent;
}

.pagination a:hover:not(.active) {
  border-color: #904CDF;
  color: #904CDF;
}

@media (max-width: 768px) {
  .shop-container {
    flex-direction: column;
    padding: 30px 20px;
  }
  .filters {
    width: 100%;
    position: static;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: linear-gradient(180deg, #faf7f3 0%, #f3ece4 100%);
  padding: 60px 5% 30px;
  text-align: center;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-logo {
  height: 70px;
  transition: transform 0.3s;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #252525;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #904CDF;
}

.footer-social {
  margin-bottom: 24px;
}

.footer-social h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #252525;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}

.social-icons a img:hover {
  opacity: 0.7;
  transform: scale(1.15);
}

.footer-bottom {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.rubik-logo {
  height: 28px;
  vertical-align: middle;
}

.payment-icons {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-icons img {
  height: 26px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.payment-icons img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===========================
   FIXED BUTTONS (WhatsApp/Viber)
   =========================== */
.fixed-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.fixed-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  background: #25D366;
}

.fixed-buttons a.viber {
  background: #7360f2;
}

.fixed-buttons a:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ===========================
   TOAST NOTIFICATION
   =========================== */
.toast-notification {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: linear-gradient(135deg, #904CDF, #6c29c7);
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(144,76,223,0.35);
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-notification.show {
  transform: translateX(0);
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #c4a0e8, #904CDF);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6c29c7;
}
