/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

body {
  font-family:
    "Segoe UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
  color: #333;
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  align-items: center;
  padding-top: 0;
  height: 100%;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
}

:root {
  --gradient-start: #222;
  --gradient-end: #222;
}

/* Header with frosted glass blur */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: white;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.site-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-header-left img {
  height: 60px;
  max-height: 60px;
  width: auto;
  max-width: 300px;
  background: transparent;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background: linear-gradient(to bottom, #eef0ee, #928e85);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  z-index: 9999;
  width: max-content;
  min-width: 200px;
  border-radius: 8px;
  animation: fadeSlide 0.25s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  display: block;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  display: block;
  transition: all 0.25s ease;
  white-space: nowrap;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background-color: #f3c308;
  color: #222;
  padding-left: 22px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  position: relative;
}

/* Arrow styling (optional) */
.dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 8px;
  padding: 8px 0;
  background: linear-gradient(to bottom, #eef0ee, #928e85);
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: fadeSlide 0.25s ease;
}

.sub-dropdown:hover > .sub-dropdown-content {
  display: block;
}

.dropdown-content,
.sub-dropdown-content {
  position: absolute;
  z-index: 2000; /* higher than sidebar */
}

/* Hover styles */
.dropdown-content a,
.sub-dropdown-content a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
  color: #222 !important;
  padding: 10px 15px;
}

/* On hover */
.dropdown-content a:hover,
.sub-dropdown-content a:hover {
  background-color: #f3c308;
  color: #222 !important; /* white text on yellow hover */
}

/* Optional: arrow indicator */
.sub-dropdown > a::after {
  float: right;
}

.sub-dropdown-content a {
  padding: 10px 15px;
  white-space: nowrap;
}

.sub-dropdown a {
  padding: 10px 20px;
  white-space: nowrap;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: static;
  top: 70px;
  right: 10px;
  padding: 10px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  z-index: 1000;
  display: flex;
}

.site-nav > div {
  position: relative;
}

.site-nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding: 10px;
  display: block;
}

/* Show nav when toggled (mobile) */
.site-nav.show {
  display: flex;
}

nav div {
  display: inline-block;
  margin-left: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-header nav a {
  color: #222;
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 600;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  margin: 5px 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #daa501;
  text-decoration: underline;
}

/* Main navbar links */
.site-header nav > ul.menu > li > a {
  color: #fff !important; /* white text in top navbar */
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;

  transition: opacity 0.8s ease;

  inset: 0;
}

.slide-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide .text {
  position: absolute;
  bottom: 20%;
  left: 8%;
  color: #fff;
  max-width: 700px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
  z-index: 3;
}

.video-slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
  z-index: 2;
}

.slide.active .text {
  opacity: 1;
  transform: translateY(0);
}

.slide .text h1 {
  font-size: 2.8rem;
  margin: 0 0 10px;
}

.slide .text p {
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Arrows */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  user-select: none;
  transform: translateY(-50%);
  z-index: 2;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Dots */
.dots-container {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

/* Gradient overlay applied to entire hero and header */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
  z-index: 2;
}

/* Semi‑transparent overlay adds color tint */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  animation: slideUp 1s ease forwards;
  padding: 60px 20px;
}

.hero::before,
.hero-overlay {
  z-index: 0;
  /* keep them behind */
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.25rem;
}

/* Animation class */
.hero-content.show {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.hero-text,
.caption {
  position: absolute;
  bottom: 60px;
  left: 50px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  animation: slideUp 1s ease forwards;
  opacity: 0;
}

.slide.active .hero-text {
  opacity: 1;
}

.hero video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  max-width: 1200px;
  margin: 60px auto; /* even spacing top/bottom */
  padding: 0 40px;
}

.product-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  z-index: 0;
  gap: 30px;
  padding-top: 40px;
  margin-top: 0;
  background: #fff;
}

.catalog-container {
  display: flex;
  gap: 20px;
}

/* Sidebar filter */
.filter-sidebar {
  width: 300px;
  background: #f8f5dc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.filter-sidebar h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.filter-group {
  margin-bottom: 25px;
}

.range-slider {
  position: relative;
  width: 100%;
  height: 25px;
}

.filter-group-label {
  display: block;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: bold;
  color: #2b2a29;
}

.input[type="range"] {
  height: 6px;
  position: absolute;
  pointer-events: none;
  left: 0;
  width: 100%;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background: #007bff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.filter-group input[type="range"] {
  width: 100%;
  accent-color: #222;
}

.product-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Product card fixes */
.product-card {
  height: 120px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Product title */
.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

/* Product details */
.product-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin: 4px 0;
}

/* Add subtle divider */
.product-card p:first-of-type {
  border-top: 1px solid #eee;
  margin-top: 8px;
  padding-top: 8px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-info h4 {
  margin-bottom: 8px;
  color: #222;
  font-size: 1.1rem;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link:hover .product-card {
  transform: scale(1.02);
  transition: 0.3s ease;
}

.product-info p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 4px;
}

/* VIDEO SECTION */
#videos {
  padding: 60px 8%;
  background: #f8f9fb;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Hover Effect */
.video-wrap:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  #videos {
    padding: 40px 5%;
  }
}

.footer {
  background-color: #111;
  color: #fff;
}

footer,
.footer-bottom {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  font-style: normal !important;
  width: 100%;
  background-color: #111;
  padding: 0;
}

.cks-footer {
  background: #111;
  color: #bbb;
  padding: 30px 40px 20px;
  font-size: 0.7em;
  margin-bottom: 40px;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding-bottom: 0;
}

.footer-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  gap: 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-left {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-left img {
  width: 300px;
  /* Adjust logo size */
  height: 60px;
  /* Adjust logo size */
  margin-bottom: 10px;
  background: none;
}

.footer-left p {
  margin: 5px 0;
  line-height: 1.5;
  font-size: 14px;
}

.footer address {
  font-style: normal;
}

.footer-right {
  flex: 2 1 600px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  /* Space between columns */
}

.footer-links {
  min-width: 180px;
}

.footer-links h4 {
  color: #f3c308;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin: 5px 0;
  transition: color 0.3s ease;
  position: relative;
  font-size: 13px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* Slightly below the text */
  width: 0;
  height: 2px;
  background-color: #f3c308;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 13px;
  padding: 10px 0;
  border-top: 1px solid #333;
  margin-top: 30px;
  background-color: #111;
  box-sizing: border-box;
}

footer,
.cks-footer {
  margin-bottom: 0;
  padding-bottom: 0;
  background-color: #111;
  width: 100%;
  box-sizing: border-box;
}

footer::after {
  content: none;
  display: none;
}

.footer-links a:hover::after {
  width: 100%; /* Animate underline on hover */
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideHero {
  0% {
    transform: translateX(0%);
  }

  25% {
    transform: translateX(0%);
  }

  30% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-100%);
  }

  55% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-200%);
  }

  80% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(-300%);
  }
}

/* Tablet adjustments */
@media (max-width: 992px) {
  .hero {
    height: 80vh; /* reduce height */
  }

  .slide .text h1 {
    font-size: 2rem;
  }

  .slide .text p {
    font-size: 1rem;
  }

  .prev,
  .next {
    font-size: 20px;
    padding: 12px;
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero {
    height: 70vh; /* smaller hero for phones */
  }

  .slide .text {
    bottom: 15%; /* move text higher */
    left: 5%;
    max-width: 90%; /* fit inside small screen */
  }

  .slide .text h1 {
    font-size: 1.5rem;
  }

  .slide .text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .caption {
    bottom: 30px;
    left: 20px;
    font-size: 0.85rem;
  }

  .prev,
  .next {
    font-size: 18px;
    padding: 8px;
    top: 45%; /* keep them centered */
  }

  .dot {
    height: 10px;
    width: 10px;
  }
}

/* Extra small (very narrow phones) */
@media (max-width: 400px) {
  .hero {
    height: 60vh;
  }

  .slide .text h1 {
    font-size: 1.2rem;
  }

  .slide .text p {
    font-size: 0.8rem;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .site-header {
    padding: 12px 20px;
    flex-wrap: wrap;
  }

  .site-header-left img {
    height: 50px;
    max-width: 200px;
  }

  .menu {
    gap: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .site-header-left img {
    height: 40px;
    max-width: 160px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .site-header-left img {
    height: 40px;
    max-width: 180px;
  }

  .site-nav a {
    padding: 0;
  }

  .menu a {
    font-size: 0.9rem;
    padding: 0;
  }
}

/* Responsive Fix */
@media (max-width: 768px) {
  .slide .text h1 {
    font-size: 1.5rem;
  }

  .slide .text p {
    font-size: 0.8rem;
  }

  .slide .text {
    left: 5%;
    bottom: 15%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, #eef0ee, #928e85);
    color: #000;
    flex-direction: column;
    display: none;
  }

  .site-nav.show {
    display: flex;
  }

  .site-nav a {
    color: #000;
  }

  .site-nav .menu {
    flex-direction: column;
    gap: 15px;
  }

  .dropdown-content,
  .sub-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }

  .dropdown:hover > .dropdown-content,
  .sub-dropdown:hover > .sub-dropdown-content {
    display: none; /* disable hover on mobile */
  }

  .hamburger {
    display: flex;
  }

  /* Main navbar links */
  .site-header nav > ul.menu > li > a {
    color: #222 !important; /* white text in top navbar */
  }

  .sub-dropdown-content {
    display: none;
    padding-left: 15px; /* indent */
  }

  .sub-dropdown.open > .sub-dropdown-content {
    display: block;
  }
}

/* mobile accordion animation */
@media (max-width: 768px) {
  .dropdown-content,
  .sub-dropdown-content {
    position: relative !important; /* stack inline, not absolute */
    top: auto !important;
    left: auto !important;
    min-width: 100% !important; /* take full width */
    width: 100% !important;
    background: transparent !important; /* no grey floating box */
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  /* when opened, allow full height (large value) so it animates */
  .dropdown.open > .dropdown-content,
  .sub-dropdown.open > .sub-dropdown-content {
    display: block; /* keep for fallback */
    max-height: 1200px; /* large enough to show content */
  }

  /* style parent toggles to look clickable */
  .dropdown > a,
  .sub-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }

  /* small chevron indicator (optional) */
  .dropdown > a::after,
  .sub-dropdown > a::after {
    content: "▸";
    transform: rotate(0deg);
    transition: transform 180ms ease;
    margin-left: 8px;
  }

  .dropdown.open > a::after,
  .sub-dropdown.open > a::after {
    transform: rotate(90deg);
  }
}

/* Responsive tweaks */
@media (max-width: 1024px) and (min-width: 601px) {
  .filter-sidebar {
    width: 250px;
    padding: 15px;
  }

  .site-nav .menu {
    gap: 10px;
  }

  .site-nav a {
    padding: 5px;
  }

  .site-header nav > ul.menu > li > a {
    padding: 0;
  }

  .dropdown > a,
  .sub-dropdown > a {
    padding: 5px;
  }
}

@media (max-width: 768px) {
  .filter-sidebar {
    width: 100%; /* full width on tablets & mobiles */
    margin-bottom: 20px; /* push content below */
  }

  .filter-sidebar h3 {
    font-size: 16px;
  }

  .filter-group {
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .filter-sidebar {
    padding: 12px;
    border-radius: 8px;
    padding-bottom: 0;
  }

  .filter-sidebar h3 {
    font-size: 14px;
  }

  .filter-group label {
    font-size: 13px;
  }

  .product-section {
    padding: 5px;
    padding-top: 20px;
    gap: 0;
  }

  .product-card {
    padding: 10px;
    min-height: 360px;
  }

  .product-card h4 {
    font-size: 1rem;
    margin: 0;
  }

  .product-info p {
    font-size: 12px;
  }
}

/* On smaller screens */
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    background-color: #111;
    padding: 0;
    gap: 0;
  }

  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .footer-left p {
    margin: 0 auto;
    max-width: 400px;
    font-size: 10px;
  }

  .footer-left img {
    margin: 0 auto 15px;
    display: block;
    height: 40px;
    width: auto;
  }

  .footer-right {
    flex: 1 1 100%;
    justify-content: center;
    gap: 20px;
  }

  .footer-links {
    min-width: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .footer-right {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .footer-links h4 {
    margin-bottom: 5px;
  }

  .footer-links a {
    margin: 3px 0;
    font-size: 10px;
  }

  .footer-bottom {
    margin-top: 0;
  }
}
