/** Shopify CDN: Minification failed

Line 747:1 Expected "}" to go with "{"

**/
/**
 * Havana Elephant - Premium CSS Overlay for Crave Theme
 * Version: 2.0 - Simplified & Compatible
 * 
 * This CSS enhances ALL existing Crave sections with your premium branding.
 * No new sections needed - just paste this into Theme Settings → Custom CSS
 */

/* ============================================
   IMPORT GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');

/* ============================================
   BRAND COLORS & VARIABLES
   ============================================ */
:root {
  --havana-gold: #D4AF37;
  --havana-purple: #4A1942;
  --havana-dark-purple: #2A0F25;
  --havana-light-gold: #E8D5A0;
  --havana-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   TYPOGRAPHY - PREMIUM FONTS
   ============================================ */

/* Apply premium serif to all headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading,
.banner__heading,
.card__heading,
.product__title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Apply clean sans-serif to body text */
body,
p,
.rte,
.product__description,
.card__text,
.banner__text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Accent font for buttons and labels */
button,
.button,
.btn,
input[type="submit"],
.product-form__submit,
.cart__submit,
.shopify-payment-button__button {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   BUTTONS - PREMIUM GOLD STYLING
   ============================================ */

/* Primary buttons - Champagne Gold */
.button--primary,
.shopify-payment-button__button--unbranded,
.product-form__submit,
input[type="submit"],
button[type="submit"],
.cart__submit {
  background: var(--havana-gold) !important;
  color: #1A1A1A !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 40px !important;
  transition: var(--havana-transition) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

.button--primary:hover,
.product-form__submit:hover,
input[type="submit"]:hover {
  background: #B8941F !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
}

/* Secondary buttons - Purple */
.button--secondary,
.banner__buttons .button:last-child {
  background: var(--havana-purple) !important;
  color: var(--havana-gold) !important;
  border: 2px solid var(--havana-purple) !important;
  border-radius: 50px !important;
  padding: 16px 40px !important;
  transition: var(--havana-transition) !important;
}

.button--secondary:hover {
  background: var(--havana-dark-purple) !important;
  border-color: var(--havana-dark-purple) !important;
  transform: translateY(-2px) !important;
}

/* Outline buttons */
.button--tertiary,
.banner__buttons .button--outline {
  background: transparent !important;
  color: var(--havana-gold) !important;
  border: 2px solid var(--havana-gold) !important;
  border-radius: 50px !important;
  padding: 16px 40px !important;
}

.button--tertiary:hover {
  background: var(--havana-gold) !important;
  color: #1A1A1A !important;
}

/* ============================================
   HERO/BANNER SECTION ENHANCEMENTS
   ============================================ */

/* Premium styling for main hero banner */
.banner,
.slideshow {
  position: relative;
  overflow: hidden;
}

/* Add elegant gradient overlay to hero */
.banner__media::after,
.slideshow__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 15, 37, 0.7) 0%,
    rgba(74, 25, 66, 0.5) 50%,
    rgba(212, 175, 55, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Ensure content is above overlay */
.banner__content,
.slideshow__text-wrapper {
  position: relative;
  z-index: 2;
}

/* Hero heading - extra premium */
.banner__heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero subtext */
.banner__text {
  font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
  opacity: 0.95;
}

/* ============================================
   ANNOUNCEMENT BAR - TRUST MESSAGING
   ============================================ */

.announcement-bar {
  background: linear-gradient(90deg, var(--havana-purple) 0%, var(--havana-dark-purple) 100%) !important;
  color: var(--havana-gold) !important;
  padding: 12px 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement-bar__link {
  color: var(--havana-gold) !important;
}

.announcement-bar__link:hover {
  color: var(--havana-light-gold) !important;
}

/* ============================================
   PRODUCT CARDS - ELEVATED DESIGN
   ============================================ */

.card-wrapper,
.card {
  transition: var(--havana-transition);
}

.card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
}

.card__inner {
  border-radius: 16px !important;
  overflow: hidden;
}

/* Product card title */
.card__heading {
  color: var(--havana-purple) !important;
  margin-top: 1rem !important;
  font-size: 1.3rem !important;
}

/* Product price - gold accent */
.price {
  color: var(--havana-gold) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700;
  font-size: 1.2rem !important;
}

.price--on-sale .price-item--regular {
  color: #999 !important;
}

/* ============================================
   PRODUCT PAGE - PREMIUM LAYOUT
   ============================================ */

.product__title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--havana-purple) !important;
  margin-bottom: 1rem !important;
}

.product__description {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  color: #333 !important;
}

.product__info-container {
  padding: 2rem;
  background: #FAFAFA;
  border-radius: 16px;
}

/* Product price on product page */
.product__price {
  font-size: 2rem !important;
  color: var(--havana-gold) !important;
  margin: 1.5rem 0 !important;
}

/* ============================================
   COLLECTION GRIDS
   ============================================ */

.collection-list__item,
.collection-card {
  border-radius: 16px !important;
  overflow: hidden;
  transition: var(--havana-transition);
}

.collection-list__item:hover,
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.collection__title {
  font-size: 1.8rem !important;
  color: var(--havana-purple) !important;
}

/* ============================================
   HEADER/NAVIGATION
   ============================================ */

.header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header__heading-link {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  font-weight: 700;
  color: var(--havana-purple) !important;
}

.header__menu-item {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.header__menu-item:hover {
  color: var(--havana-gold) !important;
}

/* ============================================
   CART - PREMIUM STYLING
   ============================================ */

.cart-drawer,
.cart-items {
  font-family: 'Inter', sans-serif !important;
}

.cart__footer {
  border-top: 2px solid var(--havana-gold);
  padding-top: 2rem;
}

.totals__subtotal-value {
  color: var(--havana-gold) !important;
  font-size: 1.8rem !important;
  font-weight: 700;
}

/* ============================================
   FOOTER - ELEGANT STYLING
   ============================================ */

.footer {
  background: linear-gradient(135deg, var(--havana-dark-purple) 0%, var(--havana-purple) 100%) !important;
  color: var(--havana-light-gold) !important;
  padding: 3rem 0 !important;
}

.footer__heading {
  color: var(--havana-gold) !important;
  font-size: 1.2rem !important;
  margin-bottom: 1.5rem !important;
}

.footer__list-social a,
.footer a {
  color: var(--havana-light-gold) !important;
  transition: var(--havana-transition);
}

.footer a:hover {
  color: var(--havana-gold) !important;
}

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */

.newsletter-form__field-wrapper {
  border-radius: 50px !important;
  overflow: hidden;
  border: 2px solid var(--havana-gold) !important;
}

.newsletter-form__button {
  background: var(--havana-gold) !important;
  color: #1A1A1A !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
}

.newsletter-form__button:hover {
  background: #B8941F !important;
}

/* ============================================
   TRUST BADGES & ICONS
   ============================================ */

/* Add gold accents to any trust badge or icon */
.icon,
svg {
  transition: var(--havana-transition);
}

.icon:hover,
.icon-with-text:hover svg {
  color: var(--havana-gold) !important;
  fill: var(--havana-gold) !important;
}

/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate cards on scroll */
.card-wrapper,
.collection-list__item {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
  .banner__heading {
    font-size: 2rem !important;
  }
  
  .button,
  .product-form__submit {
    padding: 14px 28px !important;
    font-size: 0.9rem !important;
  }
  
  .announcement-bar {
    font-size: 0.75rem !important;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Better focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--havana-gold) !important;
  outline-offset: 3px;
}

/* Ensure proper contrast */
.banner__box {
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px);
  padding: 2rem !important;
  border-radius: 12px;
}

/* ============================================
   FINAL TOUCHES - PREMIUM POLISH
   ============================================ */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Remove jagged edges on images */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Add subtle premium shine effect */
.button--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.button--primary:hover::after {
  transform: translateX(100%);
}

/* Premium loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.1) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================
   END OF PREMIUM OVERLAY
   ============================================ */
/* ============================================
   FIXES FOR LOGO AND FAQ - TARGETED VERSION
   ============================================ */

/* Fix logo brightness */
.header__heading-logo img,
.header__heading-link img {
  filter: brightness(1) !important;
  opacity: 1 !important;
}

/* FAQ SPECIFIC FIXES - Using actual class names from theme */

/* FAQ question buttons - make them visible */
.faq-item__question,
button.faq-item__question {
  background: rgba(212, 175, 55, 0.15) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #FFFFFF !important;
  padding: 1.5rem 2rem !important;
  border-radius: 12px !important;
  margin-bottom: 0.5rem !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  text-align: left !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
}

/* FAQ question text specifically */
.faq-item__question-text,
.faq-item__question span {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

/* FAQ question hover */
.faq-item__question:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  border-color: #D4AF37 !important;
  color: #D4AF37 !important;
  transform: translateX(4px) !important;
}

.faq-item__question:hover .faq-item__question-text {
  color: #D4AF37 !important;
}

/* FAQ question when active/open */
.faq-item__question[aria-expanded="true"],
.faq-item.active .faq-item__question {
  background: rgba(74, 25, 66, 0.3) !important;
  border-color: #D4AF37 !important;
  color: #D4AF37 !important;
  margin-bottom: 0 !important;
}

.faq-item__question[aria-expanded="true"] .faq-item__question-text {
  color: #D4AF37 !important;
}

/* FAQ answer content */
.faq-item__answer,
.faq-item__answer .rte {
  color: #E8E8E8 !important;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 1.5rem 2rem !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px !important;
  margin-bottom: 1rem !important;
  line-height: 1.8 !important;
}

/* Keep any colored text in answers visible */
.faq-item__answer strong,
.faq-item__answer b {
  color: #D4AF37 !important;
}

/* FAQ accordion container */
.faq-accordion {
  background: transparent !important;
}

/* FAQ section overall */
.shopify-section.section-faq-accordion,
.faq,
section[id*="faq"] {
  background: linear-gradient(135deg, #0a0612 0%, #1a0f25 100%) !important;
  padding: 4rem 2rem !important;
}

/* FAQ section heading */
.faq-accordion__header h2,
.section-faq-accordion h2 {
  color: #D4AF37 !important;
  text-align: center !important;
  font-size: 2.5rem !important;
  margin-bottom: 1rem !important;
}

/* FAQ section description */
.faq-accordion__header p,
.section-faq-accordion > .page-width > p {
  color: #E8D5A0 !important;
  text-align: center !important;
  margin-bottom: 3rem !important;
  font-size: 1.2rem !important;
}

/* FAQ icon color */
.faq-item__question svg,
.faq-item__question .icon {
  color: #D4AF37 !important;
  fill: #D4AF37 !important;
/* ============================================
   FAQ ADDITIONAL FIXES
   ============================================ */

/* FAQ Category Filter Buttons - make them visible */
.faq-accordion__categories button,
.faq-categories button,
[class*="faq"] [class*="categories"] button,
.faq-accordion__header button {
  background: rgba(212, 175, 55, 0.2) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 25px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  margin: 0.25rem !important;
}

/* Category filter buttons hover */
.faq-accordion__categories button:hover,
.faq-categories button:hover {
  background: rgba(212, 175, 55, 0.4) !important;
  color: #D4AF37 !important;
  border-color: #D4AF37 !important;
  transform: translateY(-2px) !important;
}

/* Category filter buttons active/selected */
.faq-accordion__categories button.active,
.faq-accordion__categories button[aria-pressed="true"],
.faq-categories button.active {
  background: #D4AF37 !important;
  color: #1A1A1A !important;
  border-color: #D4AF37 !important;
}

/* FAQ Answer Text - Make it BIGGER and more readable */
.faq-item__answer,
.faq-item__answer p,
.faq-item__answer .rte,
.faq-item__answer .rte p {
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  color: #E8E8E8 !important;
}

/* FAQ Answer lists */
.faq-item__answer ul,
.faq-item__answer ol {
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
  margin-left: 1.5rem !important;
  color: #E8E8E8 !important;
}

.faq-item__answer li {
  margin-bottom: 0.75rem !important;
}

/* FAQ Answer strong/bold text */
.faq-item__answer strong,
.faq-item__answer b {
  color: #D4AF37 !important;
  font-size: 1.15rem !important;
}

/* FAQ Answer links */
.faq-item__answer a {
  color: #D4AF37 !important;
  text-decoration: underline !important;
}

.faq-item__answer a:hover {
  color: #E8D5A0 !important;
}/* ============================================
   LOGO BRIGHTNESS FIX - FINAL
   ============================================ */

/* Force logo to full brightness */
.header__heading-logo img,
.header__heading-link img,
.header__heading img,
.header-logo img,
.logo img,
header a[href="/"] img,
header img {
  filter: brightness(1.2) contrast(1.1) saturate(1.1) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Remove any dark overlays on header */
.header::before,
.header::after,
.header-wrapper::before {
  display: none !important;
}

/* Ensure header background doesn't darken logo */
.header,
.header-wrapper {
  background-blend-mode: normal !important;
}