/* ============================================================
   STOPKA — ar-footer
   ============================================================ */
.ar-footer {
  background-color: #111111;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 3rem 0 0;
}

.ar-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Logo / Marka */
.ar-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ar-footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.ar-footer-logo:hover {
  color: #d4a843 !important;
}

.ar-footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(200, 191, 173, 0.6);
  margin: 0;
}

/* Social media */
.ar-footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.ar-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: rgba(200, 191, 173, 0.7) !important;
  transition: all 0.25s ease;
  text-decoration: none;
}

.ar-footer-social a:hover {
  border-color: #c9a96e;
  color: #c9a96e !important;
  background-color: rgba(201, 169, 110, 0.08);
}

/* Separator */
.ar-footer-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4), transparent);
  margin: 0.5rem auto;
}

/* Copyright i linki */
.ar-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  width: 100%;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.ar-footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(200, 191, 173, 0.4);
}

.ar-footer-links {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.ar-footer-links a {
  color: rgba(200, 191, 173, 0.5) !important;
  text-decoration: none;
  transition: color 0.25s ease;
}

.ar-footer-links a:hover {
  color: #c9a96e !important;
}

@media (min-width: 768px) {
  .ar-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================================
   ANIMACJE WEJŚCIA — klasy JS
   ============================================================ */
.ar-animate-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ar-animate-init.ar-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay dla kart WooCommerce */
.woocommerce ul.products li.product:nth-child(2).ar-animate-init { transition-delay: 0.1s; }
.woocommerce ul.products li.product:nth-child(3).ar-animate-init { transition-delay: 0.2s; }
.woocommerce ul.products li.product:nth-child(4).ar-animate-init { transition-delay: 0.3s; }

/* Feedback "dodano do koszyka" */
.single_add_to_cart_button.ar-added {
  background-color: #2d6a4f !important;
  color: #ffffff !important;
}

/* ============================================================
   STICKY HEADER — klasa po scrollu
   ============================================================ */
#masthead.ar-scrolled {
  background-color: rgba(10, 10, 10, 0.98) !important;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6) !important;
}

/* ============================================================
   LOGO TEKSTOWE
   ============================================================ */
.ar-text-logo {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: #c9a96e !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.ar-text-logo:hover {
  color: #d4a843 !important;
}

/* Opcjonalne widgety stopki */
.ar-footer-widgets {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  text-align: left;
}

.ar-footer-widget-column .widget {
  margin: 0;
}

.ar-footer-widget-column .widget-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .ar-footer-widgets {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
