/** Shopify CDN: Minification failed

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

**/
/* ========================================
   BEST WEST APPAREL - CUSTOM STYLES
   Based on Sidnaw & Company design aesthetic
   ======================================== */

/* ========== FIX WHITE GAP - CRITICAL ========== */
.shopify-section-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#shopify-section-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ========== GLOBAL RESETS & BASE ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background-color: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.announcement-bar__message {
  margin: 0;
}

/* ========== HEADER & NAVIGATION ========== */
/* Header background */
.header,
header,
.shopify-section-header {
  background-color: #F5F4F2 !important;
}

.header-wrapper {
  background-color: #F5F4F2;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
  margin-top: 0 !important;
  padding-top: 28px !important;  /* Increase this number to make top taller */
  padding-bottom: -0px !important;  /* ADD THIS LINE to reduce bottom space */
}


.header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Make logo smaller and shift left */
.header__heading-logo {
  max-width: 189px;
  margin-left: -5px;
  margin-top: -0px;
}

/* Spread out menu items horizontally */
.header__menu-item:nth-child(1) {
  /* SHOP */
  margin-right: 25px;
}

.header__menu-item:nth-child(3) {
  /* JOURNAL */
  margin-left: 25px;
}

/* Make menu font larger and control letter spacing */
.header__menu-item {
  font-size: 23px;
  letter-spacing: 4px;
}

/* ========== HERO BANNER ========== */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-banner__image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 66.67%;
}

.hero-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.hero-banner__heading {
  font-size: 48px;
  font-weight: 300;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-banner__button {
  display: inline-block;
  padding: 12px 30px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-banner__button:hover {
  background-color: #fff;
}

/* ========== COLLECTION GRID ========== */
.collection-grid {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.collection-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.collection-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.collection-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-grid__item:hover .collection-grid__image {
  transform: scale(1.05);
}

.collection-grid__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.collection-grid__title {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.collection-grid__link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

/* ========== FEATURED CONTENT BLOCKS ========== */
.featured-content {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.featured-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.featured-content__item {
  position: relative;
}

.featured-content__image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.featured-content__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-content__item:hover .featured-content__image {
  transform: scale(1.05);
}

.featured-content__text {
  text-align: center;
}

.featured-content__heading {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.featured-content__button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

.featured-content__button:hover {
  background-color: #444;
}

/* ========== FULL WIDTH IMAGE + TEXT ========== */
.image-text-section {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.image-text-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-text-section__image {
  width: 100%;
  height: auto;
  display: block;
}

.image-text-section__content {
  padding: 40px;
}

.image-text-section__heading {
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.image-text-section__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* ========== FOOTER ========== */
/* Footer background */
.footer,
footer,
.shopify-section-group-footer-group,
.shopify-section-footer {
  background-color: #F5F4F2 !important;
}

.footer {
  border-top: 1px solid #e5e5e5;
  padding: 60px 40px 40px;
}

.footer__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #333;
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu-item {
  margin-bottom: 12px;
}

.footer__menu-link {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__menu-link:hover {
  color: #333;
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
}

.footer__newsletter-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.footer__newsletter-form {
  display: flex;
  gap: 10px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.footer__newsletter-button {
  padding: 10px 20px;
  background-color: #2c2c2c;
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.footer__newsletter-button:hover {
  background-color: #444;
}

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 13px;
  color: #999;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__link {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #666;
}

.footer *,
footer * {
  color: #333 !important;
}

.footer a,
footer a {
  color: #666 !important;
}

.footer a:hover,
footer a:hover {
  color: #333 !important;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px;
}

.product-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  text-align: center;
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  aspect-ratio: 1 / 1;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__title {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card__price {
  font-size: 15px;
  color: #666;
}

.product-card__link {
  text-decoration: none;
  color: inherit;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1024px) {
  .collection-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-content__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 15px 20px;
  }
  .header__menu-left {
    display: none;
  }
  .header__menu-toggle {
    display: block;
  }
  .header__heading-logo {
    position: static;
    transform: none;
  }
  .header__heading-logo img {
    max-width: 140px;
  }
  .collection-grid,
  .featured-content,
  .image-text-section,
  .product-grid {
    padding: 0 20px;
  }
  .collection-grid__wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .featured-content__grid {
    grid-template-columns: 1fr;
  }
  .image-text-section__wrapper {
    grid-template-columns: 1fr;
  }
  .product-grid__wrapper {
    grid-template-columns: 1fr;
  }
  .footer__wrapper {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .hero-banner__heading {
    font-size: 28px;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-spacing {
  margin-bottom: 80px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background-color: #2c2c2c;
  color: #fff;
}

.btn--primary:hover {
  background-color: #444;
}

.btn--secondary {
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
}

.btn--secondary:hover {
  background-color: #333;
  color: #fff;
}
/* ========== MOBILE HEADER FIX ========== */
@media screen and (max-width: 1024px) {
  .header-wrapper {
    padding-top: 10px !important;
    padding-bottom: 5px !important;
  }
}/* =============================================
   HIDE SEARCH ICON — DESKTOP & MOBILE
   ============================================= */
.header__search,
.header__icon--search {
  display: none !important;
}/* =============================================
   DESKTOP: CENTER NAV + SHIFT LOGO LEFT (ALL PAGES)
   ============================================= */
@media screen and (min-width: 1024px) {

  /* Center the nav menu items */
  .header__inline-menu {
    position: absolute;
    left: 54%;
    transform: translateX(-50%);
  }

  /* Shift logo left — all pages */
  .header__heading,
  .header__heading-logo-wrapper {
    margin-left: -30px;
  }

  /* Force home page logo to stay inline, not drop down */
  .header--top-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .header--top-left .header__heading {
    margin-left: -50px;
  }
/* =============================================
   HOMEPAGE ONLY: ACCOUNT ICON — BOTTOM RIGHT
   ============================================= */
.header--top-left ~ * .header__icon--account,
.header--top-left .header__icon--account {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #F5F4F2;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);

}/* ========== CARDINAL CART ICON - ALL VIEWS ========== */
/* Hide the default cart icon SVG */
.header__icon--cart .icon,
.header__icon--cart svg {
  display: none !important;
}

/* Add cardinal as background image on ALL views */
.header__icon--cart {
  position: relative;
  background-image: url('/cdn/shop/files/Small_Cardinal_b28d6a6b-ef2c-4c5c-8bbc-96d818b69c07.png?v=1771200777');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 54px !important;
  height: 54px !important;
  margin-top: -16px; /* ← ADD THIS - negative moves up, positive moves down */
}

/* Keep the cart count bubble bottom right on ALL views */
.header__icon--cart .cart-count-bubble {
  position: absolute !important;
  bottom: -6px !important;
  right: -6px !important;
  top: auto !important;
}

@media screen and (max-width: 1024px) {
  .header__icon--cart {
    width: 54px !important;
    height: 54px !important;
    background-image: url('/cdn/shop/files/Small_Cardinal_b28d6a6b-ef2c-4c5c-8bbc-96d818b69c07.png?v=1771200777');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media screen and (max-width: 768px) {
  .header__icon--cart {
    width: 54px !important;
    height: 54px !important;
    background-image: url('/cdn/shop/files/Small_Cardinal_b28d6a6b-ef2c-4c5c-8bbc-96d818b69c07.png?v=1771200777');
    background-position: center;
    background-size: contain;
  }
}

/* Cart bubble - bottom right on ALL views */
.cart-count-bubble,
cart-notification-button .cart-count-bubble,
.header__icon--cart .cart-count-bubble {
  position: absolute !important;
  bottom: -9px !important;
  right: -10px !important;
  top: auto !important;
}

@media screen and (max-width: 768px) {
  .cart-count-bubble {
    position: absolute !important;
    bottom: -6px !important;
    right: -6px !important;
    top: auto !important;
  }
}

@media screen and (max-width: 1024px) {
  .cart-count-bubble {
    position: absolute !important;
    bottom: -6px !important;
    right: -6px !important;
    top: auto !important;
  }

}/* ========== CARDINAL ON ANNOUNCEMENT BAR ========== */
.custom-announcement-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.announcement-cardinal {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
/* ========== PAGE TITLE SPACING - ALL PAGES ========== */
.main-page-title,
.page-title,
.collection__title,
.blog__title,
.section-header__title {
  padding-top: 40px !important;
}
@media screen and (max-width: 768px) {
  .announcement-cardinal {
    width: 14px;
    height: 14px;
  }
}/* ========== ANNOUNCEMENT CARDINAL - MOBILE ONLY ========== */
.announcement-cardinal--mobile-right {
  display: none;
}

@media screen and (max-width: 768px) {
  .announcement-cardinal--mobile-right {
    display: inline-block;
  }
}