/* ==========================================================================
   STYLE.CSS - ICCRI NET Produk Page Redesign
   Theme: Premium Agriculture (Coffee & Cocoa - Forest Green, Cocoa, Gold)
   Standards: WCAG 2.1 Level AA Compliant
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties / Design Tokens --- */
:root {
  --color-primary: #123524;         /* Deep Forest Green (Main Brand) */
  --color-primary-light: #1f5038;   /* Forest Green Medium */
  --color-secondary: #5c3e35;       /* Cocoa Brown */
  --color-accent: #d49a17;         /* Gold Accent */
  --color-accent-hover: #b8820e;   /* Darker Gold */
  
  /* Neutrals */
  --color-bg-light: #fafaf7;       /* Soft Warm White */
  --color-bg-card: #ffffff;        /* Pure White for cards */
  --color-bg-alt: #f1f3f0;         /* Light Gray-Green tint */
  --color-text-dark: #1f2937;      /* Dark Charcoal */
  --color-text-muted: #4b5563;     /* Muted Gray */
  --color-text-light: #ffffff;     /* White */
  --color-border: #dcdfdc;         /* Soft Border */
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 4px rgba(18, 53, 36, 0.05);
  --shadow-md: 0 10px 20px rgba(18, 53, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(18, 53, 36, 0.12);
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Accessibility Focus Indicator (WCAG 2.4.7) --- */
*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* Skip-to-content Link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 20px;
}

/* --- Global Layout & Helper Classes --- */
.el-section {
  padding: 80px 0;
  position: relative;
}

.el-section.bg-alt {
  background-color: var(--color-bg-alt);
}

.el-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 48px; /* Touch target (WCAG) */
  text-align: center;
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 154, 23, 0.3);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  color: var(--color-text-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent) !important; }

/* Section Header Typography Utilities */
.section-header-centered {
  margin-bottom: 50px;
  text-align: center;
}

.section-badge {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}

.section-header-centered h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin-top: 15px;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 15px;
}

.section-header-flex h2 {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-light);
}

.section-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.section-link i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.section-link:hover i {
  transform: translateX(4px);
}

/* --- Header / Navigation Styling (Unified) --- */
.site-header {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a {
  color: var(--color-text-light);
}

.top-bar-info a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.logo-bar {
  background-color: #ffffff;
  padding: 15px 0;
}

.logo-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: clamp(40px, 5.5vw, 60px);
  width: auto;
  max-width: 100%;
  display: block;
}

.navigation-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.navigation-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-navigation {
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  width: 100%;
  justify-content: flex-start;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover, .nav-item:focus-within > .nav-link {
  color: var(--color-accent-hover);
  background-color: var(--color-bg-light);
  text-decoration: none;
}

.nav-item.current-menu-item > .nav-link {
  color: var(--color-accent-hover);
  background-color: rgba(212, 154, 23, 0.06);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.dropdown-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  text-decoration: none;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive Header Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 991px) {
  .top-bar { display: none; }
  .navigation-bar { display: none; }
  .menu-toggle { display: block; }
  
  .site-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 3px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 10px 0;
  }
  
  .site-navigation.is-active {
    display: block;
  }
  
  .logo-bar {
    position: relative;
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-link {
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-border);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-accent);
    background-color: #fafaf9;
    display: none;
    padding-left: 10px;
  }
  
  .nav-item.dropdown-active .dropdown-menu {
    display: block;
  }
}

/* --- Page Title Box --- */
.page-title-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0c2317 100%);
  color: var(--color-text-light);
  padding: 40px 0;
}

.page-title-section h1 {
  color: var(--color-text-light);
  margin-bottom: 0;
}

.breadcrumbs {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumbs i {
  font-size: 0.75rem;
}

/* --- Hero Slider Carousel --- */
.slider-section {
  position: relative;
  height: 480px;
  width: 100%;
  overflow: hidden;
  background-color: #0c2317;
}

.slider-container {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 53, 36, 0.85) 0%, rgba(18, 53, 36, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  z-index: 3;
}

.slide-overlay-content h2 {
  color: var(--color-text-light);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 850;
  margin-bottom: 15px;
  line-height: 1.15;
}

.slide-overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.slide-tag {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
}

/* Slider Navigation Buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-smooth);
}

.slider-arrow:hover, .slider-arrow:focus {
  background-color: var(--color-accent);
  color: var(--color-primary);
  outline: none;
}

.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--color-accent);
  width: 24px;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .slider-section { height: 400px; }
  .slider-arrow { display: none; }
  .slide-overlay-content {
    background: rgba(18, 53, 36, 0.75);
    text-align: center;
  }
  .slide-overlay-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Categories Section --- */
.categories-section {
  background-color: var(--color-bg-light);
  padding: 80px 0 50px;
}

.categories-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.categories-row-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
}

.categories-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 53, 36, 0.9) 0%, rgba(18, 53, 36, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card h3 {
  color: var(--color-text-light);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.category-card-link {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.category-card:hover .category-card-img {
  transform: scale(1.05);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(18, 53, 36, 0.95) 0%, rgba(18, 53, 36, 0.4) 60%, transparent 100%);
}

.category-card:hover .category-card-link {
  color: var(--color-text-light);
  gap: 12px;
}

@media (max-width: 991px) {
  .categories-row-top {
    grid-template-columns: 1fr;
  }
  .categories-row-bottom {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 250px;
  }
}

/* --- Katalog Banner Section --- */
.katalog-banner-section {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.katalog-banner-section h2 {
  margin-bottom: 15px;
}

.katalog-banner-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
}

/* --- WooCommerce Grid & Placeholders --- */
.product-list-section {
  padding: 80px 0;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card-placeholder {
  background-color: var(--color-bg-card);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  min-height: 380px;
  justify-content: center;
}

.product-card-placeholder:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(18, 53, 36, 0.04);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(18, 53, 36, 0.08);
}

.product-card-placeholder:hover .card-icon-container {
  background-color: var(--color-primary);
  color: var(--color-accent);
  transform: scale(1.05);
}

.card-meta-placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Skeleton Lines */
.skeleton-line {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

.skeleton-title {
  width: 70%;
  height: 18px;
}

.skeleton-desc {
  width: 90%;
  height: 12px;
}

.skeleton-price {
  width: 45%;
  height: 14px;
  margin-top: 5px;
}

.skeleton-button {
  width: 60%;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  margin-top: 15px;
}

.card-placeholder-label {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  background-color: var(--color-bg-light);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 991px) {
  .product-cards-grid {
    grid-template-columns: 1fr;
  }
  .product-card-placeholder {
    min-height: auto;
    padding: 30px;
  }
}

/* --- Parallax CTA Section --- */
.parallax-cta-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 53, 36, 0.85); /* Contrast AA overlay */
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.parallax-overlay h2 {
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.parallax-overlay p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

/* Parallax mobile fallback */
@media (max-width: 768px) {
  .parallax-bg-img {
    background-attachment: scroll;
  }
}

/* --- Site Footer Styling (Unified) --- */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 3px solid var(--color-accent);
}

.site-footer h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--color-accent);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .footer-widgets {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

.footer-widget ul {
  list-style: none;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.footer-widget ul li a:hover {
  color: var(--color-accent);
  text-decoration: none;
  padding-left: 4px;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info-logo img {
  height: 48px;
  width: auto;
  max-width: 100%;
}

.footer-info-text {
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-recent-news li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.footer-recent-news li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-recent-news a {
  display: block;
  color: #ffffff !important;
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 4px;
}

.footer-recent-news a:hover {
  color: var(--color-accent) !important;
  text-decoration: none;
}

.footer-recent-news span {
  font-size: 0.75rem;
  opacity: 0.6;
  display: block;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 4px;
  font-size: 1rem;
}

.footer-contact-item span {
  flex: 1;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 0.8rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
