@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

.header {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

a .header {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul .header {
  list-style: none;
}

.top-bar {
  display: none;
}

.social-icons,
.contact-info,
.language-flags {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar img {
  height: 18px;
  margin-right: 5px;
}

.top-bar span,
.top-bar a {
  color: #cccccc;
  font-size: 14px;
}

.top-bar a:hover {
  color: #D4AF37;
  transform: scale(1.05);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.logo img {
  height: 80px;
}

.navigation {
  flex: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links li::before {
  content: none !important;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  padding: 5px;
}

.nav-links > li > .dropdown-toggle a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-weight: bold;
  color: #ffffff;
  position: relative;
}

.nav-links > li > .dropdown-toggle a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-links > li:hover > .dropdown-toggle a::after {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding-left: 0;
  list-style: none;
}

.nav-links > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  list-style: none;
}

.submenu li::before {
  content: none !important;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #cccccc;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}

.icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icons img {
  height: 24px;
  cursor: pointer;
  filter: invert(75%) sepia(47%) saturate(402%) hue-rotate(7deg) brightness(96%) contrast(90%);
  transition: all 0.3s ease;
}

.icons img:hover {
  filter: invert(85%) sepia(67%) saturate(602%) hue-rotate(7deg) brightness(106%) contrast(100%);
  transform: scale(1.1);
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 11;
}

#searchInput {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  padding: 8px 40px 8px 14px;
  font-size: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  outline: none;
  background-color: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#searchBtn {
  position: absolute;
  top: 50%;
  right: calc(50% - 100px + 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: 150px;
    font-size: 13px;
    padding-right: 35px;
  }

  #searchBtn {
    right: calc(50% - 75px + 10px);
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.burger:hover span {
  background: #D4AF37;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  box-shadow: -8px 0 40px rgba(212, 175, 55, 0.4);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  padding: 30px 25px;
  overflow-y: auto;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.mobile-menu.open {
  right: 0;
  animation: slideIn 0.4s ease forwards;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  padding: 20px 0;
  list-style: none;
  margin-top: 20px;
}

.mobile-nav li {
  list-style: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 8px;
}

.mobile-nav > li:last-child {
  border-bottom: none;
}

.mobile-dropdown-toggle {
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-dropdown-toggle:hover {
  color: #FFD700;
  padding-left: 5px;
}

.mobile-dropdown-toggle .arrow {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.mobile-nav li.has-submenu.active .mobile-dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.mobile-nav > li > a {
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav > li > a:hover {
  color: #FFD700;
  padding-left: 5px;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
  animation: fadeInDown 0.3s ease forwards;
  list-style: none;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  padding: 12px 20px;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu li {
  list-style: none;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.mobile-submenu a {
  font-size: 16px;
  padding: 10px 0;
  color: #cccccc !important;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  text-transform: none !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

.mobile-submenu a:hover {
  color: #D4AF37 !important;
  padding-left: 8px !important;
}

.close-btn {
  font-size: 32px;
  font-weight: bold;
  color: #D4AF37;
  cursor: pointer;
  text-align: right;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  margin-left: auto;
  background: rgba(212, 175, 55, 0.1);
}

.close-btn:hover {
  color: #000;
  background: #D4AF37;
  border-color: #D4AF37;
  transform: rotate(90deg);
}

@keyframes slideIn {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .contact-info {
    display: none;
  }

  .burger {
    display: flex;
  }
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  height: 805px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 80px;
  z-index: 1;
}

.banner-content {
  text-align: center;
  z-index: 2;
  animation: fadeIn 1.5s ease forwards;
}

.qwigley-font {
  font-family: 'Qwigley', cursive;
  font-weight: 400;
  font-size: 157px;
  color: #D4AF37;
  line-height: 1.1;
}

.banner-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background-color: #D4AF37;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.banner-button:hover {
  background-color: #FFD700;
}

.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 fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .qwigley-font {
    font-size: 100px;
  }

  .banner-button {
    font-size: 20px;
    padding: 18px 50px;
  }
}

@media (max-width: 768px) {
  .banner {
    padding: 40px 20px;
    height: 600px;
  }

  .qwigley-font {
    font-size: 70px;
  }

  .banner-button {
    font-size: 18px;
    padding: 16px 40px;
  }

  .banner-image {
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
    width: auto;
  }

  .banner-image img {
    height: 300px;
    width: auto;
    object-fit: contain;
  }
}

/* Ponuda */
.wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px;
  box-sizing: border-box; 
}

.ponuda-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
}

.ponuda-card {
  flex: 0 0 auto;
  width: 303px;
  height: 260px;
  background: #1a1a1a;
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  text-decoration: none;
  color: #D4AF37;
  box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #D4AF37;
}

.ponuda-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.ikonica {
  width: 100px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.ponuda-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ponuda-card p {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

@media (max-width: 1200px) {
  .ponuda-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ponuda-card {
    width: 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 40px 20px; 
  }

  .ponuda-card {
    width: 100%;
  }
}

/* Posebne prilike */

.posebne-prilike {
  text-align: center;
  padding: 40px 20px;
  overflow-x: hidden; 
}

.posebne-prilike h2 {
  color: #D4AF37;
  font-size: 36px;
  margin-bottom: 40px;
  border: none;
  outline: none;
}

.prilike-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.prilika {
  position: relative;
  width: 100%;
  padding-top: 93%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #2b2b2b;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-decoration: none;
  color: inherit;
}

.prilika:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

.prilika::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.prilika:hover::before {
  opacity: 1;
}

.prilika img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.3s ease;
}

.prilika:hover img {
  transform: scale(1.1);
}

.prilika p {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  padding: 8px 16px 20px;
  text-decoration: none !important;
  color: white;
}

@media (max-width: 1200px) {
  .prilike-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .prilike-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .prilike-grid {
    grid-template-columns: 1fr; 
  }
}


/* Izdvajamo sekcija */
.izdvajamocontainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #D4AF37;
  text-align: left;
}

.swiper {
  position: relative;
  padding: 0 40px;
  overflow: visible;
}

.swiper-slide {
  overflow: visible;
}

.swiper-button-next,
.swiper-button-prev {
  color: #D4AF37;
  top: 40%;
  width: 30px;
  height: 30px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #FFD700;
  transform: scale(1.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #D4AF37;
  font-size: 20px;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 45%;
    width: 25px;
    height: 25px;
  }

  .izdvajamocontainer {
    padding: 50px 20px;
  }
}

/* Sta nudimo */
.services {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
}

.service .icon {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}

.service p {
  font-weight: 600;
  color: #2b2b2b;
  font-size: 18px;
}
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    gap: 30px;
  }
}

/* Recenzije */

.testimonial-carousel {
  width: 100%;
  background: url('img/backgroundrecenzije.png') center/cover no-repeat;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.testimonial {
  position: absolute;
  text-align: center;
  color: white;
  max-width: 800px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 20px;
}

.testimonial h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 20px;
}

.stars img {
  width: 30px;
  height: 30px;
  margin: 0 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial p {
    font-size: 16px;
  }

  .testimonial h2 {
    font-size: 22px;
  }

  .testimonial-carousel {
    height: auto;
    padding: 60px 20px;
  }
}

/* Blogovi */

.blog-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #1c1f23;
  margin-bottom: 50px;
}

.blogs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1c1f23;
  margin: 20px 20px 10px;
  text-align: left;
}

.blog-description {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 20px;
  text-align: left;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pretraga */

.shop-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 20px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.filters {
  width: 280px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.filters h3 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #D4AF37;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 10px;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #D4AF37;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 8px;
  letter-spacing: 0.5px;
}

.filter-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-group ul li {
  margin-bottom: 12px;
}

.filter-group ul li a {
  text-decoration: none;
  color: #cccccc;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 15px;
}

.filter-group ul li a:hover {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
  padding-left: 20px;
}

.filter-group form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filter-group input[type="number"] {
  padding: 12px 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(26, 26, 26, 0.8);
  color: #ffffff;
  transition: all 0.3s ease;
}

.filter-group input[type="number"]:focus {
  border-color: #D4AF37;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.filter-group button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #1a1a1a;
  border: 2px solid #D4AF37;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.products {
  flex: 1;
}

.products h2 {
  padding-bottom: 30px;
  color: #D4AF37;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product {
  padding-bottom: 0;
  transition: all 0.4s ease;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
}

.product:hover {
  border-color: #D4AF37;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.product a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.product img {
  border-radius: 0;
  object-fit: cover;
  width: 100%;
  height: 300px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product:hover img {
  transform: scale(1.1);
}

.product .name {
  margin: 20px 20px 10px;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.product .price {
  margin: 0 20px 20px;
  color: #D4AF37;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
}

.product a:hover .name {
  color: #D4AF37;
}

.pagination {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination a {
  display: inline-block;
  padding: 12px 20px;
  margin: 0;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  text-decoration: none;
  color: #D4AF37;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pagination a.active {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #1a1a1a;
  border-color: #D4AF37;
}

.pagination a:hover:not(.active) {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  transform: translateY(-2px);
}


@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .shop-container {
    flex-direction: column;
    padding: 40px 15px;
  }

  .filters {
    width: 100%;
    margin-bottom: 30px;
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .product img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .filter-group form {
    flex-direction: column;
  }

  .filter-group input[type="number"],
  .filter-group button {
    width: 100%;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

/* footer */

/* footer */

.footer {
  background-color: #1a1a1a;
  padding: 50px 20px 30px 20px;
  text-align: center;
  margin: 0 auto;
  color: #D4AF37;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-logo {
  height: 80px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #D4AF37;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

.footer-social {
  margin-bottom: 30px;
}

.footer-social h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #D4AF37;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s;
}

.social-icons a img:hover {
  opacity: 0.7;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.rubik-logo {
  height: 32px;
  vertical-align: middle;
}

.payment-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
}

.payment-icons img {
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
}

.fixed-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 10;
    }

    .fixed-buttons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: #25D366;
      border-radius: 50%;
      color: white;
      font-size: 24px;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s;
    }

    .fixed-buttons a.viber {
      background: #7360f2;
    }

    .fixed-buttons a:hover {
      transform: scale(1.1);
    }

/* ========================================
   PREMIUM LUXURY STYLES - CRNO ZLATNA TEMA
   ======================================== */

/* PREMIUM HERO SECTION */
.premium-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: #D4AF37;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  font-family: 'Poppins', sans-serif;
}

.gold-text {
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #1a1a1a;
  border: 2px solid #D4AF37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #FFD700, #D4AF37);
}

.btn-secondary {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid #D4AF37;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  backdrop-filter: blur(10px);
  animation: rotateIn 1s ease-out 0.5s both;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-200deg) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.hero-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge strong {
  font-size: 28px;
  font-weight: 700;
  margin-top: 5px;
}

/* LUXURY CATEGORIES SECTION */
.categories-luxury {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
}

.categories-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #D4AF37;
  font-weight: 300;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.category-card {
  background: #1a1a1a;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover {
  border-color: #D4AF37;
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  color: #D4AF37;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #D4AF37;
}

.category-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.category-arrow {
  display: inline-block;
  font-size: 24px;
  color: #D4AF37;
  transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
  transform: translateX(10px);
}

/* BRANDS SECTION */
.brands-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.brands-section .section-title {
  color: #ffffff;
  margin-bottom: 60px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-item {
  padding: 40px 20px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.brand-item:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: #D4AF37;
  transform: scale(1.05);
}

.brand-item h3 {
  font-size: 28px;
  color: #D4AF37;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.brand-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .premium-hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-badge {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }

  .hero-badge span {
    font-size: 10px;
  }

  .hero-badge strong {
    font-size: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
  }

  .categories-luxury {
    padding: 60px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ============================================
   PREMIUM FEATURED SECTION - BLACK BACKGROUND
   ============================================ */
.premium-featured {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.premium-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.premium-featured::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.section-title-white {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.premium-swiper {
  padding: 20px 0 60px 0;
}

.premium-product-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-product-card:hover {
  border-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

.premium-product-image {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #0f0f0f;
}

.premium-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-product-card:hover .premium-product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.premium-product-card:hover .product-overlay {
  opacity: 1;
}

.product-sale-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  color: #000;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.premium-product-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  color: #D4AF37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.premium-product-info h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  color: #D4AF37;
  font-size: 28px;
  font-weight: 700;
}

.product-old-price {
  color: #666;
  font-size: 18px;
  text-decoration: line-through;
}

.premium-swiper .swiper-button-prev,
.premium-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #D4AF37;
  border-radius: 50%;
  color: #D4AF37;
  transition: all 0.3s ease;
}

.premium-swiper .swiper-button-prev:hover,
.premium-swiper .swiper-button-next:hover {
  background: #D4AF37;
  color: #000;
  transform: scale(1.1);
}

.premium-swiper .swiper-button-prev::after,
.premium-swiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 900;
}

.premium-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #333;
  opacity: 1;
  transition: all 0.3s ease;
}

.premium-swiper .swiper-pagination-bullet-active {
  background: #D4AF37;
  width: 30px;
  border-radius: 6px;
}

/* ============================================
   PREMIUM FEATURES SECTION
   ============================================ */
.premium-features {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 80px 0;
  position: relative;
}

.premium-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.feature-item:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: #D4AF37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #D4AF37, #FFD700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  stroke: #000;
  stroke-width: 2;
}

.feature-item h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-item p {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   PREMIUM TESTIMONIALS SECTION
   ============================================ */
.premium-testimonials {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
}

.premium-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  border-color: #D4AF37;
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
  background: rgba(26, 26, 26, 0.95);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #D4AF37;
  object-fit: cover;
}

.testimonial-info h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.stars-gold {
  color: #D4AF37;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.premium-footer {
  background: #0a0a0a;
  color: #ffffff;
  position: relative;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo-premium {
  width: 180px;
  margin-bottom: 25px;
  filter: brightness(1.2);
}

.footer-tagline {
  color: #D4AF37;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

.footer-social-premium {
  display: flex;
  gap: 15px;
}

.social-icon-premium {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-premium:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  transform: translateY(-3px);
}

.social-icon-premium svg {
  width: 18px;
  height: 18px;
  fill: #D4AF37;
  transition: fill 0.3s ease;
}

.social-icon-premium:hover svg {
  fill: #000;
}

.footer-links-premium {
  display: contents;
}

.footer-col h4,
.footer-column h4 {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col ul,
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li,
.footer-column ul li {
  margin-bottom: 12px;
}

.footer-col ul li a,
.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover,
.footer-column ul li a:hover {
  color: #D4AF37;
  transform: translateX(5px);
}

.footer-bottom-premium {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-premium p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.footer-badges {
  display: flex;
  gap: 20px;
}

.footer-badges span {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .premium-featured {
    padding: 60px 0;
  }

  .section-title-white {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom-premium {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .premium-product-image {
    height: 280px;
  }

  .premium-product-info h3 {
    font-size: 18px;
  }

  .product-price {
    font-size: 24px;
  }

  .feature-item {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 20px 40px;
  }

  .footer-brand {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}


