/** Shopify CDN: Minification failed

Line 76:3 Unexpected "="

**/
/*
 * Custom CSS to replace the text-based ".header-4thecrowd__logo"
 * with an image.
*/

.header-4thecrowd__logo {
  /*
   * =================================================
   *                  EDIT THIS AREA
   * =================================================
   */

  /* 1. Paste the image link you copied from Shopify inside the parentheses */
  background-image: url('/cdn/shop/files/new_logo.png?v=1754681889');

  /* 2. Adjust the width and height for your logo */
  width: 180px;
  height: 60px;

  /*
   * =================================================
   */

  /* --- Image Display Properties --- */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block; /* This is important to apply width and height */

  /* --- Hides the original link text --- */
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  color: transparent;
}
/*
 * =================================================================
 * Custom CSS to replace the text-based footer logo with an image.
 * =================================================================
*/

.footer-4thecrowd__logo {
  /*
   *                  EDIT THIS AREA
   */

  /* 1. Paste your footer image link inside the parentheses */
  background-image: url('/cdn/shop/files/logo_new_red.png?v=1754732049');

  /* 2. Adjust the width and height for your footer logo */
  width: 150px;
  height: 50px;

  /* --- Image Display Properties --- */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center; /* Align to the left */
  display: block;

  /* --- Hides the original link text and icon --- */
  font-size: 0;
  color: transparent;
}

/* Hide the original icon and text elements that were inside the logo link */
.footer-4thecrowd__logo-icon,
.footer-4thecrowd__logo-text {
  display: none;
}

 * =================================================================
 *  Generic CSS to replace any text element with an image logo.
 * =================================================================
*/

/* 1. Replace '.your-text-element-class-here' with the CSS class of your text element. */
.footer-4thecrowd__brand-text {
  /*
   *                  EDIT THIS AREA
   */

  /* 2. Paste your image link from Shopify Files inside the parentheses */
  background-image: url('/cdn/shop/files/font_white_new.png?v=1754736095');

  /* 3. Adjust the width and height for your logo */
  width: 150px;
  height: 50px;

  /* --- Image Display Properties --- */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; /* Or 'left center', 'right center' */
  display: block; /* Or 'inline-block' if needed */

  /* --- Hides the original text --- */
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  color: transparent;
    display: none !important;
}
