.site-footer {
  background: #1c1917;
  color: #d6d3d1;
  margin-top: auto;
  padding: 3rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-brand { padding-top: 30px; }
}

.brand-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.brand-icon {
  width: 24px;
  height: 24px;
  color: #f59e0b;
}
.brand-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.brand-desc {
  font-size: .9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: #d6d3d1;
}

.social-links {
  display: flex;
  gap: .75rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #292524;
  border-radius: .5rem;
  color: #d6d3d1;
  text-decoration: none;
}
.social-btn:hover {
  background: #44403c;
  color: #f59e0b;
}
.social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-links h3,
.footer-newsletter h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: #d6d3d1;
  text-decoration: none;
}
.footer-links a:hover { color: #f59e0b; }

.footer-newsletter p {
  font-size: .875rem;
  margin-bottom: 1rem;
  color: #d6d3d1;;
}
.newsletter-wrap {
  position: relative;
}
.newsletter-input {
  width: 100%;
  box-sizing: border-box;
  padding: .7rem .75rem;
  background: #292524;
  border: 1px solid #44403c;
  border-radius: .5rem;
  color: #fff;
  font-size: .875rem;
}
.newsletter-input:focus {
    outline: 1px solid #fff;
}
.newsletter-btn {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #d97706;
  color: #fff;
  border: none;
  padding: .25rem .5rem;
  border-radius: .25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-btn:hover { background: #b45309; }
.newsletter-btn svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid #292524;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .875rem;
}
.footer-bottom p {
    color: #d6d3d1;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-policies {
  display: flex;
  flex-wrap: wrap; 
  /*gap: 1.5rem;*/
  gap: 0.3rem;
}
.footer-policies a {
  color: #d6d3d1;
  text-decoration: none;
  white-space: nowrap;
}
.footer-policies a:hover { color: #f59e0b; }
@media (max-width: 768px) {
  .footer-policies {
    flex-direction: row;
    /*gap: 1rem;*/
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
  }
  .site-footer { padding: 2rem 0.3rem 2rem; }
  .footer-bottom { justify-content: center; align-items: center; font-size: 13px; }
}

.cookie-notice {
  position: fixed;
  bottom: 20px; /* lifted above bottom */
  left: 20px;
  max-width: 350px;
  background: #111; /* black card */
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.cookie-notice a {
  color: #facc15; /* yellow accent */
  text-decoration: underline;
}

.cookie-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.cookie-content {
  margin-top: 10px;
}

.cookie-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

#cookie-accept {
  background: #facc15; /* yellow */
  color: #111;
}

#cookie-accept:hover {
  background: #fde047; /* lighter yellow */
}

#cookie-reject {
  background: #333;
  color: #fff;
}

#cookie-reject:hover {
  background: #555;
}

@media (max-width: 600px) {
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: unset;
  }
}
