/** Shopify CDN: Minification failed

Line 9:1 Unexpected "{"
Line 9:2 Unexpected "{"
Line 9:4 Expected identifier but found "'footer.css'"
Line 18:0 Unexpected "@import"

**/
 {{ 'footer.css' | asset_url | stylesheet_tag }}


-----------------------------------------------------------------------------------------------------------------------------------------------------------------
/* ============================================
   FOOTER CSS — Professional Clean Design
   Font: Cormorant Garamond (headings) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --footer-bg: #0f0f0f;
  --footer-bottom-bg: #1a1a1a;
  --border-color: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --accent: #c8a96e;
  --accent-hover: #e0c48a;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #f5f5f5;
  font-family: var(--font-body);
}
.announcement-bar__text {
  text-align: center !important;
}



/* .shopify-section:not(.header-section) :is(.section, .cart-summary) {
  background: #0F0F0F !important;
} */
/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
    /* margin-bottom :-27px; */
    border-radius: 16px;
  background-color: var(--footer-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
}

/* ---- Main Inner Grid ---- */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ============================================
   FOOTER COLUMNS
   ============================================ */

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Heading ---- */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 14px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ---- Nav List ---- */
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-list li a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

/* ============================================
   CONTACT COLUMN
   ============================================ */

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-info p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-contact-info .label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.footer-contact-info a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 13.5px;
}

.footer-contact-info a:hover {
  color: var(--accent);
}

/* Directions link */
.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent) !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, gap 0.2s ease !important;
}

.directions-link:hover {
  color: var(--accent-hover) !important;
  gap: 8px !important;
}

/* ============================================
   NEWSLETTER COLUMN
   ============================================ */

.newsletter-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.input-group {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.input-group:focus-within {
  border-color: var(--accent);
}

.input-group input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  padding: 12px 14px;
}

.input-group input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12.5px;
}

.input-group button {
  background-color: white;
  border: none;
  color: #0f0f0f;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.input-group button:hover {
  background: var(--accent-hover);
}

/* ============================================
   SOCIAL ICONS
   ============================================ */

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 169, 110, 0.08);
}

/* ============================================
   FOOTER BOTTOM BAR
   ============================================ */

.footer-bottom {
  background-color: var(--footer-bottom-bg);
  border-top: 1px solid var(--border-color);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-payment span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-icons svg {
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.payment-icons svg:hover {
  opacity: 1;
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */

@media screen and (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
    padding: 56px 32px 48px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (480px)
   ============================================ */

@media screen and (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 36px;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
  }

  .footer-payment {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group button {
    width: 100%;
    padding: 12px;
  }
}