
/* Hero full screen with background image + gradient overlay */
.main-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  position: relative;
  background: url(https://cryptogoodies.shop/assets/images/bitcoin-hoodies-hero.jpg);
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Optional overlay for extra darkening */
.main-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.8), rgba(17,17,17,0.2));
  z-index: 0;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1; /* above overlay */
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #aaa;
}

/* Search box wrap */
.coin-search-wrap { position: relative; width: 100%; margin-bottom: 20px; z-index: 1; }

/* Search Icon */
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  pointer-events: none;
    z-index: 2;

}

/* On focus, move icon to right and make it dark */
.coin-search-wrap:focus-within .search-icon {
  left: auto;
  right: 12px;
    z-index: 3;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
}


/* Input */
#coin-search {
  width: 100%;
  padding: 12px 12px 12px 40px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: padding 0.3s ease, background 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  color: #fff;
  backdrop-filter: blur(5px);
}

#coin-search:focus {
  border: 1px solid #aaa;
  padding-left: 12px;
  color: #111;
  background: rgba(255,255,255,0.8);
}

/* Placeholder Rotator */
.placeholder-rotator {
  position: absolute;
  left: 40px;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  height: 20px;
  overflow: hidden;
  font-size: 16px;
  color: #ccc;
  z-index: 2;
  pointer-events: none;
}
.placeholder-rotator span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}


/* Suggestions dropdown */ 
#search-suggestions { 
    margin-top:5px; list-style:none; padding:0; border:1px solid #ccc; border-radius:6px; max-height:250px; overflow-y:auto; display:none; background:white; position:absolute; width:100%; max-width:100%; z-index:10; 
} 

#search-suggestions li { display:flex; align-items:center; justify-content:space-between; padding:10px; cursor:pointer; color:#222;} 
#search-suggestions li:hover { background:#f0f0f0; } 
#search-suggestions li img.coin-icon { width:20px; height:20px; margin-right:10px; } 
#search-suggestions li .coin-label { flex:1; } 
#search-suggestions li .arrow { width:16px; height:16px; background-image:url("data:image/svg+xml;utf8,<svg fill='%23666' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 18l6-6-6-6'/></svg>"); background-size:contain; background-repeat:no-repeat; }

/* Frequently searched buttons */
.pill-buttons {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    overflow-x: auto;
}

.pill-buttons a {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; /* remove underline */
}

.pill-buttons a:hover {
  background: rgba(255,255,255,0.8);
  color: #111;
  border-color: rgba(255,255,255,1);
}


.cat_slider {
  margin:15px 0;
}

.cat_slider .slider-container {
	padding: 0 15px !important;
}

.cat_slider .slide {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.cat_slider .slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1,1);
  transition: 0.5s all ease-in-out;
}

.cat_slider .slide:hover img {
  transform: scale(1.05,1.05);
  transition: 0.5s all ease-in-out;
}

.cat_slider .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 70%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 30px;
  box-sizing: border-box;
}

.cat_slider .slide-title {
  font-size: 1.5rem;
	line-height:1.1;
  font-weight: bold;
  margin-bottom: 10px;
  max-width: 55%;
}

.cat_slider .slide-description {
  font-size: 0.78rem;
	line-height:1.35;
  margin-bottom: 20px;
  max-width: 60%;
  color: rgba(255,255,255,0.7);
}

.cat_slider .cta-discover-more {
  font-size: 14px;
  color: #fff;
}

.cat_slider .slide-title, 
.cat_slider .slide-description, 
.cat_slider .cta-discover-more {
  transform:translateY(0px);
  transition: 0.5s all ease-in-out;
}

.cat_slider .slide:hover .slide-title, 
.cat_slider .slide:hover .slide-description, 
.cat_slider .slide:hover .cta-discover-more {
  transform:translateY(-10px);
  transition: 0.5s all ease-in-out;
}

.cat_slider .cta-icon {
  display: inline-block;
  transform: translateX(0px);
  transition: 0.1s all ease-in-out;
}

.cat_slider .cta-icon svg {
  height: 14px;
  width: 14px;
  margin-left: 6px;
  vertical-align: middle;
}

.cat_slider .external-link-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url('https://cryptogoodies.shop/assets/images/external-link.png');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  opacity:0.5;
}

.cat_slider .sl-gradient-text {
  background: -webkit-linear-gradient(0deg, #717171, #f7f7f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-nav-next {
  right: 10px;
}

.slider-nav {
  left: 10px;
}
.cat_slider .slider-nav, .cat_slider .slider-nav-next {
	margin-top:0 !important;
}


.cat_slider .slider-nav[aria-hidden="true"] {
  display: none;
}

/* WELCOME SECTION */
	
	.cg_welcome {
		background-color: #ffe9e8;
		padding-top:30px;
		position:relative;
		
	}
	
	.cg_welcome .container {
		z-index:5;
		position:relative;
	}
	
	.cg_welcome .background-image {
		width:100%;
		height:100%;
		position: absolute;
		top: 0;
		left:0;
		z-index:1;
		background-size:contain;
		background-repeat: no-repeat;
		background-position: right center;
		background-attachment: scroll;
		background-image: url('https://cryptogoodies.shop/wp-content/uploads/2021/09/crypto-goodies-hero-addon-crypto-hodler-1.png');
	}

	.cg_welcome p {
		color: #494f66;
    	font-size: 15px;
	}
	
	.cg_welcome h2 {
		font-weight:700;
		color: #313c64;
		font-size: 2.2rem;
	}
	
	.cg_welcome a.btn {
	    background: transparent;
		color: #313c64;
		border: 1px solid #313c64;
		padding: 15px 30px;
		display: inline-block;
		border-radius: 5px;
		font-size: 12px;
		letter-spacing: 1px;
		text-transform: uppercase;
		font-weight: 600;
		text-align: center;
	}
	
	.cg_welcome a.btn:hover {
		background: #313c64;
		color: #fff;
	}
	
	.cg_welcome a.btn:hover .cta-icon {
		transform: translateX(5px);
		transition: 0.1s all ease-in-out;
	}
	
	.fl_flex-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.fl_column-1 {
		flex-basis: 50%;
		padding: 20px;
	}

	.fl_column-2 {
		flex-basis: 50%;
		z-index: 10;
	}

	.fl_column-2 img {
		max-width: 90%;
		height: auto;
	}
	
	.fl_text_wrap {
		max-width:600px;
	}
	
	.full-width-image, .full-width-image img {
	    width:100%;
	    max-width:100%;
	}
	
	
	/* Hero Slider */
	.hero-slider {
	    position: relative;
	    height: 80vh; /* Set to 80% of the viewport height */
	    overflow: hidden;
	    background-color: #000;
	    color: #fff;
	}

	.hero-slider h1,
	.hero-slider h2,
	.hero-slider h3 {
	    margin: 10px 0;
	    font-weight: 700;
	    color: #fff;
	}

	.hero-slider a {
	    text-decoration: none;
	    color: inherit;
	}

	.hero-slider button {
	    cursor: pointer;
	    border: none;
	    outline: none;
	}

	.hero-slider .slide {
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    opacity: 0;
	    visibility: hidden;
	    transition: opacity 1s ease;
	}

	.hero-slider .slide.active {
	    opacity: 1;
	    visibility: visible;
	}
    
	.hero-slider .slide img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	}
	
	.hero-slider .gradient-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        text-align: left;
        padding: 5%;
        z-index: 500;
        max-width: 800px;
    }

	.hero-slider .gradient-mask {
	    position: absolute;
	    bottom: -1px;
	    left: 0;
	    width: 100%;
	    height: 25%; /* Gradient mask covering 15% of the slider height */
	    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
	}

	.hero-slider h1,
	.hero-slider h2 {
	    font-size: 2rem;
	    margin-bottom: 10px;
	}

	.hero-slider p {
	    font-size: 1rem;
	    margin-bottom: 20px;
	}

	.hero-slider a.btn {
	    color: #fff;
	    padding: 15px 30px;
	    border-radius: 10px;
	    border: 1px solid #fff;
	    display: inline-block;
	    text-align: center;
	    backdrop-filter: blur(10px);
	    -webkit-backdrop-filter: blur(10px);
	    background: rgba(255,255,255,0.05);
	}

	/* Progress Bars for Bullets */
	.hero-slider .progress-container {
	    position: absolute;
	    bottom: 30px;
	    left: 50%;
	    transform: translateX(-50%);
	    display: flex;
	    gap: 10px;
	    width: auto; /* Automatically fit to content */
	    justify-content: center;
	    z-index: 100;
	}

	.hero-slider .progress-bar {
	    width: 100px; /* Fixed width for the progress bars */
	    height: 2px; /* Thin lines for bullets */
	    background-color: rgba(255, 255, 255, 0.2);
	    border-radius: 2px;
	    overflow: hidden;
	    cursor: pointer; /* Make progress bars clickable */
	}

	.hero-slider .progress {
	    height: 100%;
	    background-color: #fff;
	    width: 0; /* Start with 0 width */
	}

	.hero-slider .progress.active {
	    transition: width 5s linear; /* Sync with the timer */
	}
	
	section .cg-shop-title {
		text-align: center;
		font-size: 2.6rem;
		font-weight: 700;
		text-transform: uppercase;
		margin: 0px 0px 10px 0;
	}

	section .cg-shop-subtitle {
		font-size: 12px;
		letter-spacing:1px;
		font-size: 400;
		text-align: center;
		margin:0 0 40px 0;
	}
	section .cg-row-wrap {
		width:100%;
		padding: 0 1rem;
	}	
	section .cg-row-wrap.cta {
		display:flex;
		justify-content:center;
	}	
	
	.cta-icon {
		display: inline-block;
		transform: translateX(0px);
		transition: 0.1s all ease-in-out;
	}
	
	.hero-cta a:hover .cta-icon,
	.posters-section a:hover .cta-icon {
		transform: translateX(5px);
		transition: 0.1s all ease-in-out;
	}
	
	.cta-icon svg {
		height: 14px;
		width: 14px;
		margin-left: 8px;
	}
	
	section .products .product {
		display: flex;
		margin-bottom: 0px;
		flex-direction: column;
		max-width: 100%;
		padding: 0 !important;
	}
	section .products .badge {
		top: 1rem;
    	left: 1rem;
		border-radius: 5px;
	}
	section .products .product .product_thumbnail, 
	section .products .product .product_thumbnail img {
		background: #f1f1f1;
	}
	section .products .product figure.product_thumbnail {
		padding:30px;
		margin-top: 0;
		background:#f1f1f1;
		border-radius:5px;
		overflow:hidden;
	}
	section.section-style {
		padding: 0;
		margin: 0;
	}
	
	section.section-style-2 {
		padding: 0 0;
		margin: 0;
	}
	
	.section-progress {
		margin: 60px 0;
		padding: 0 30px;
	}
	
	.section-progress .progress-container {
		display:flex;
	}

	.section-progress--row {
		max-width: 50%;
		margin: 0px auto;
		background: #e6e6e6;
		height: 2px;
		overflow: hidden;
	}

	.current_indicator {
		background: #333;
		height: 2px;
		width: 15%;
		margin:0;
	}

	.progress-bar {
		background: #333;
		height: 2px;
		width: 0;
		max-width: 100%;
		margin:0;
	}
	
	.swiffy-slider .slider-nav {
		margin-left: 10px;
		margin-top: -100px;
	}
	.swiffy-slider .slider-nav.slider-nav-next {
		margin-right: 10px;
		margin-top: -100px;
	}
	.swiffy-slider .slider-nav::before {
    	border-radius: 5px;
	}
	.flex-me {
		display:flex;
		flex-direction:row;
	}
	section.shop-selection {
		margin: 20px 0 40px 0;
	}
	section.crypto-logos {
		margin: 40px 0 20px 0;
	}
	.shop-selection .selection-item--image img {
		width:100%;
		max-width: 100%;
		height:auto;
	}
	.selection-item--title .title__inner {
		position: absolute;
		z-index: 5;
		bottom: 50px;
		left: 50px;
		color: #fff;
		max-width:600px;
	}
	.selection-item--title .title__inner h3 {
		color:#fff;
		font-size:2rem;
		font-weight:700;
		margin:0;
	}
	
	.selection-item--title .title__inner a.btn {
		color: #fff;
		border: 1px solid;
		padding: 15px 30px;
		text-align: center;
		border-radius: 5px;
		margin-top: 30px;
		display: inline-block;
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	.selection-item--title .title__inner a.btn:hover {
		background:#fff;
		color:#111;
		border-color:#fff;
	}
	
	.shop-selection p.cat_description {
		font-size: 11px;
		line-height: 1.5;
		margin: 20px 0 0 0;
		color: rgba(255,255,255,0.8);
		text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	}
	
	.shop-selection .swiffy-slider .slider-nav,
	.shop-selection .swiffy-slider .slider-nav.slider-nav-next,
	.crypto-logos .swiffy-slider .slider-nav,
	.crypto-logos .swiffy-slider .slider-nav.slider-nav-next{
		margin-top: 0px;
	}
	
	.cta-display-mobile-only, .mobile-only, .row-mobile-only {
		display: none;
	}
	
	a.cat-shop-cta {
		padding: 15px;
		text-align: center;
		margin: 30px 15px 15px 15px;
		color: #111;
		border: 1px solid #111;
		border-radius: 3px;
		font-weight: 500;
		text-transform: uppercase;
		font-size: 14px;
		letter-spacing: 1px;
	}
	
	a.cat-shop-cta:after {
		transform: none;
		content: "\e923";
		font-family: et-icon;
		margin-left: 5px;
		font-size: 13px;
	}
	
	a.cat-shop-cta:active,
	a.cat-shop-cta:hover {
		background:#111;
		color: #fff !important;
		border-color:#111;
	}
	
	.shop-selection picture {
		display:block;
		overflow: hidden;
	}
	
	.shop-selection picture > * {
		max-width:100%;
		width:100%;
		max-height:auto;
	}
	
	.products-wrap .slider-container {
        padding: 0 1rem;
    }

	.section__title__mobile {
		display: none;
	}
	
	.section.section-style-2 .hero_banner_wrapper img {
	    width: 100%;
	}
	
	

	
	/* PRODUCT TABS */
	.product-tabs-wrap {
	    border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
        padding-bottom:2px;
	}
	.product-tabs {
        display: flex;
        gap: 10px;
        cursor: pointer;
        position: relative;
        justify-content: center;
    }
    .tab {
        padding: 30px 30px;
        position: relative;
        font-size: 16px;
        font-weight: 500;
        color: #111;
		opacity:0.5;
        transition: all 0.3s ease-in-out;
    }
    .tab.active {
        opacity: 1;
    }
    
    .tab::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        height: 3px;
        background: black;
        transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    }
    .tab:hover::after {
        width: 100%;
        left: 0;
    }
    .tab.active::after {
        width: 100%;
        left: 0;
    }
    .tab-content {
        display: none;
        padding: 20px 0;
        font-size: 18px;
        color: #444;
    }
    .tab-content.active {
        display: block;
    }
    
   /* FAQ */
    .faq-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 80%;
        margin: 0 auto;
        gap: 20px;
        padding:120px 0;
    }
    .faq-title {
        flex: 1;
        font-size: 2rem;
        font-weight: bold;
    }
    
    .faq-title h2 {
        font-size: 2.6rem;
        font-weight: 600;
        width: 80%;
    }
    
    .faq-items {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 20px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        flex-direction: column;
    }
    .faq-question {
        font-size: 1.2rem;
        font-weight: 500;
        flex: 1;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 500;
        margin:0;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
    }
    .faq-answer {
        font-size: 16px;
        color: #555;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
        padding-left: 0px;
        padding-right: 40px;
    }
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding-top: 10px;
    }
    .faq-item.active .faq-icon {
        transform: translateY(-50%) rotate(180deg);
        color: #111;
    }
 
    /* MARQUEE */
	:root {
	  --marquee-width: 80vw;
	  --marquee-height: 20vh;
	  /* --marquee-elements: 12; */ /* defined with JavaScript */
	  --marquee-elements-displayed: 6;
	  --marquee-element-width: calc(
		var(--marquee-width) / var(--marquee-elements-displayed)
	  );
	  --marquee-animation-duration: calc(var(--marquee-elements) * 4s);
	}

	.crypto-brand-logos {
		background-color: transparent;
        padding: 20px 0;
        width: 100%;
	}

	.marquee-wrap {
		display:flex;
		align-content: center;
		justify-content: center;
	}

	.marquee {
		width: 100%;
		margin: 0 auto;
		height: 60px;
		color: #eee;
		overflow: hidden;
		position: relative;
	}
	.marquee:before,
	.marquee:after {
	  position: absolute;
	  top: 0;
	  width: 10rem;
	  height: 100%;
	  content: "";
	  z-index: 1;
	}
	.marquee:before {
	  left: 0;
	  background: linear-gradient(to right, #fff 0%, transparent 100%);
	}
	.marquee:after {
	  right: 0;
	  background: linear-gradient(to left, #fff 0%, transparent 100%);
	}
	.marquee-content {
	  list-style: none;
	  height: 100%;
	  display: flex;
	  animation: scrolling var(--marquee-animation-duration) linear infinite;
	}
	
	.marquee-content:hover {
	  animation-play-state: paused;
	}
	
	@keyframes scrolling {
	  0% {
		transform: translateX(0);
	  }
	  100% {
		transform: translateX(
		  calc(-1 * var(--marquee-element-width) * var(--marquee-elements))
		);
	  }
	}
	.marquee-content li {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  /* text-align: center; */
	  flex-shrink: 0;
	 width: var(--marquee-element-width);
	  max-height: 100%;
	  white-space: nowrap;
	}

	.marquee-content li img {
	  width: auto;
		max-width:100%;
		height: 70px;
		opacity:0.5;
		transition: 0.3s all ease-in-out;
	  /* height: 100%; */
	}

	.marquee-content li:hover img {
		opacity:1;
	}
	
	.crypto-merch-section {
		margin:0;
		padding:15px;
	}
	
	.shop-grid {
		display:grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.shop-grid .item_wrap {
		position:relative;
	}
	
	.shop-grid .item_image img {
		aspect-ratio: 6 / 4;
		object-fit: cover;
	}
	
	.shop-grid .item_title {
		position:absolute;
		z-index:5;
		bottom:0;
		left:0;
		width:60%;
		padding:5%;
		text-align:left;
	}
	
	.shop-grid .item_title h2 {
		color:#fff;
		font-size:1.6rem;
		font-weight:600;
		line-height:1.15;
		margin:0;
	}
	
	.shop-grid .item_title p {
	    color:#fff;
	    margin:10px 0;
	    font-size: 0.8rem;
	}
	
	.shop-grid .item_cta span {
		display:inline-block;
		padding:10px 0px;
		color:#fff;
		border-bottom: 1px solid #fff;
		font-size:0.8rem;
		font-weight:500;
		text-align:center;
		margin-top:10px;
	}
	
	section.section-style.how-do-you-wear-it {
		margin: 0;
	}
	
	section.section-style.how-do-you-wear-it .slider-container {
	    padding:0;
	    grid-gap: 3px;
	}
	
	.how-do-you-wear-it .slide-wrap {
		position: relative;
		overflow: hidden;
	}
	
	.how-do-you-wear-it .slider-indicators {
		bottom: -20px;
	}
	
	.how-do-you-wear-it .slide-wrap img {
		transform: scale(1,1);
		transition: 0.3s all ease-in-out;
	}
	
	.how-do-you-wear-it .slide-wrap:hover img {
		transform: scale(1.05,1.05);
		transition: 0.3s all ease-in-out;
	}
	
	.how-do-you-wear-it .slide-wrap .slide-caption {
		position: absolute;
		bottom: 30px;
		left: 30px;
		color: #fff;
		z-index: 5;
	}
	
	.hwi-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 60px 0;
        padding: 0 30px;
        text-align: center;
    }
	
	.how-do-you-wear-it h2 {
		color: #111;
		font-size:2.4rem;
		font-weight: 700;
		margin: 0 0 10px 0;
	}
	.how-do-you-wear-it p {
		color:#777;
		font-size: 0.9rem;
	}
	
	.instagram-link {
        color: #3e3e3e;
        font-weight: 500;
        font-size: 0.8rem;
        padding: 10px 20px;
        border-radius: 10px;
        border: 1px solid #e0e0e0;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    


.about-cryptogoodies {
  padding: 60px 20px;
  color: #111;
  background: #fff;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.about-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.toggle-about {
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-about .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.toggle-about[aria-expanded="true"] .arrow {
  transform: rotate(-135deg);
}

.about-intro {
  margin: 10px 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
}

.about-content {
  display: none;
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #333;
}

.explore-links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.explore-links span {
    font-size: 0.9rem;
    font-weight: 600;
     color: #111;
     margin-right: 10px;
}

.explore-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.explore-links a:hover {
  color: #111;
  text-decoration: underline;
}



/* Section styles */
.social-stuff {
    color: white;
    margin: 1rem;
    background: #000;
}

.soc_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    background: #000;
    padding: 30px;
}

.soc_tag {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0px;
}

.soc_msg {
    flex: 1;
    font-size: 0.9rem;
    padding: 20px;
    border-left: 1px solid #333;
    padding-left: 40px;
}

.soc_cta .expand_socials {
    border: 1px solid white;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

.soc_cta .expand_socials:hover {
    background: white;
    color: black;
}

/* Modal styles */
.social-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.social-modal-content {
    background: black;
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

.social-modal-content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #c9c9c9;
    font-weight: 600;
}

.modal-description {
    font-size: 0.85rem;
    margin-bottom: 30px;
    color: #666;
}

/* Social list vertical layout */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-link .et-icon {
    font-size: 1.4rem;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.instagram { background: #E1306C; }
.facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }





@media only screen and (min-width: 1280px) {
	.hero-bg-img {
		z-index: 1;
		opacity: 0.9;
		max-height: calc(100vh - 70px);
	}
}

@media only screen and (max-width: 1000px) {
	.cg_welcome {
		margin-top:40px;
	}
	
	.fl_flex-container {
		flex-direction: column;
	}

	.fl_column-2 {
		order: 2; /* -1 */
	}

	.cg_welcome h2 {
		font-size: 2.2rem;
	}

	.cg_welcome a.btn {
		display: block;
	}
	
	.crypto-merch-section .shop-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}
	
@media only screen and (max-width: 768px) {
    /* Hero Slider */
	.hero-slider {
	    /* 4:5 aspect ratio on mobile */
    	height: calc(100vw * 1.25); /* 4:5 ratio means height = width * 1.25 */
	}

    .hero-slider h2 {
        font-size: 1.6rem;
    }

    .hero-slider p {
        font-size: 0.80rem;
    }

    .hero-slider .gradient-overlay {
    	justify-content: flex-end;
    	padding-bottom: 80px;
    }
    
    .faq-container {
        flex-direction: column;
    }
    
    .section__title__mobile {
	    position: absolute;
        display: block;
        top: 30px;
        left: 30px;
        z-index: 10;
        color: #fff;
        letter-spacing: 4px;
        font-size: 11px;
        padding: 5px 20px;
        text-transform: uppercase;
	}

	.section__title__mobile:before {
		width: 2px;
        height: 100%;
        display: block;
        content: '';
        background: #ffc767;
        position: absolute;
        left: 0;
        top: 0;
	}
	
	.soc_wrap {
        gap: 20px;
        padding: 30px;
        flex-direction: column;
    }
    
    .soc_msg {
        padding: 20px 0;
        border-left: 0;
        border-top: 1px solid #333;
        text-align: center;
    }
    
    .soc_cta {
        width: 100%;
        text-align: center;
    }

}
    
    
@media only screen and (max-width: 640px) {
    
    .main-hero {
        height: 100vh;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0 20px 40px 20px;
        background-position: 70% 50%;
    }
    
    #crypto-goodies-search {
        max-width: 100%;
    }
    
    .hero-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }
    
    .hero-subtitle {
      font-size: 1rem;
      margin-bottom: 30px;
      color: #aaa;
    }

    
    .hero-slider .hero-cta {
        width: 100%;
        display: block;
    }
    
    .hero-slider a.btn {
        font-size: 0.85rem; /* Smaller button text on mobile */
        width: 100%;
        display: block;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
	}
	
	.hero-slider h1,
	.hero-slider h2 {
	    font-size: 1.4rem;
	    margin-bottom: 10px;
	}
	
    .hero-slider .gradient-overlay {
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	    display: flex;
	    flex-direction: column;
	    justify-content: flex-end;
	    align-items: flex-start;
	    text-align: left;
	    padding: 20px;
	    padding-bottom: 60px;
	    z-index: 100;
	}
	
    section .cg-shop-title {
		font-size: 2.2rem;
	}
	
    .flex-me {
		flex-direction:column;
	}
	
	.crypto-merch-section {
        margin: 0;
        padding: 0px;
    }
	
	.crypto-merch-section .shop-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1px;
    }
	
	.section-progress {
		margin: 40px 0 0px 0;
	}
	
	.section-progress--row {
		max-width:100%;
	}
	
	.selection-item--title .title__inner {
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		padding: 30px;
		text-align: center;
	}
	.selection-item--title .title__inner h3 {
		font-size: 1.2rem;
		text-transform: uppercase;
	}

	.selection-item--title .title__inner a.btn {
		margin-top: 20px;
		font-size: 10px;
		padding: 20px;
		width: 100%;
		display: block;
	}
	
	.shop-selection p.cat_description {
		display:none;
	}
	
	.cta-display-mobile-only, .mobile-only {
		display: block;
	}
	
	.row-mobile-only {
		display:flex;
	}
	
	.shop-grid .item_image {
	    position: relative;
	}
	
	.shop-grid .item_image:before {
	    content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        display: block;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
	}
	
	.shop-grid .item_image img {
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}
	
	section.crypto-logos {
		margin: 0px 0 20px 0;
	}
	
	
	section.section-style-2 {
		padding: 0 0;
		margin: 0;
	}
	
	section.shop-selection .slider-container {
		grid-auto-columns: 100%;
	}
	
	.shop-selection .slider-container>* {
		width: 100vw;
		height: 100vw;
	}
	
	.cat_slider {
        margin: 3px 0;
    }
    
    .cat_slider .slider-container {
        padding: 0 3px !important;
        grid-gap: 3px;
    }
    
    .cat_slider .slide {
        border-radius: 5px;
    }
	
	.cat_slider .slide-overlay {
        padding: 20px;
    }
	
    .cat_slider .slide-title {
	  	font-size: 0.9rem;
		line-height:1;
	}

	.cat_slider .slide-description {
	  	font-size: 0.7rem;
		line-height:1.2;
		margin: 0;
	}

	.cat_slider .cta-discover-more {
	    font-size: 0.7rem;
        color: #fff;
        position: absolute;
        top: 20px;
        left: 20px;
	}
	
	.cat_slider.slider-item-ratio-16x9 {
        --swiffy-slider-item-ratio: 16/9;
    }
    
    .cat_slider .slide img {
        aspect-ratio: 16/9;
    }
    
    .cat_slider .slide-description {
        max-width: 100%;
    }
    
    .cat_slider .slide-title {
        max-width: 100%;
    }
    
    .cat_slider.slider-item-reveal {
        --swiffy-slider-item-reveal: 2rem;
    }
	
	.cat_slider .slider-nav {
	    display: none !important;
	}
	
	.cat_slider .slide:hover .slide-title, 
    .cat_slider .slide:hover .slide-description, 
    .cat_slider .slide:hover .cta-discover-more {
        transform:translateY(0px);
    }
    
    .cg_welcome .background-image {
	    background-position: 50% 0%;
	}

	.cg_welcome .container {
		padding: 0;
	}

	.cg_welcome .fl_column-1 {
	    order: 2;
	    background: #1e1e1f;
	    padding: 30px;
	}

	.cg_welcome .fl_column-2 {
        order: 1;
        margin-top: -80px;
    }

	.cg_welcome {
        margin-top: 60px;
    }

	.cg_welcome h2 {
		font-size: 1.4rem;
		color: #fff;
	}

	.cg_welcome p {
	    color: rgba(255,255,255,0.5);
	    font-size: 0.85rem;
	}

	.cg_welcome a.btn {
		background: #282828;
	    color: #fff;
	    border: 1px solid #282828;
	}

	.cg_welcome a.btn:hover {
		background: #000;
	    color: #fff;
	    border: 1px solid #000;
	}
	
    .product-tabs-wrap {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .product-tabs {
        white-space: nowrap;
        justify-content: flex-start;
    }  
    
    .faq-title h2 {
        width: 100%;
        font-size: 2.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.85rem;
    }
    
    .products-wrap .slider-item-reveal {
        --swiffy-slider-item-reveal: 1.2rem;
    }
    
    section .products .product figure.product_thumbnail {
        padding: 20px 10px;
    }
    
    .products-wrap .products .product-title h3 {
        font-weight: 500 !important;
        font-size: 0.8rem;
        margin: 0;
    }
    
    .products-wrap .products .product_after_shop_loop_price {
        font-size: 0.75rem;
    }
    
    
    :root {
	    --marquee-elements-displayed: 3;
    }
    
    .marquee:before,
    .marquee:after {
	    width: 5rem;
    }

	.marquee {
		width:90%;
		height: 70px;
	}
	.crypto-brand-logos {
		padding:10px 0;
		position: relative;
	}
	.marquee-content li {
		margin: 0 10px;
		width: auto;
	}
	
	.marquee-content li img {
		height: 100%;
		max-height: 60px;
	}
	
	section.section-style.how-do-you-wear-it {
	    margin: 20px 0 3px 0;
    }
    
   section.section-style.how-do-you-wear-it .slider-item-reveal {
        --swiffy-slider-item-reveal: 2rem;
    }
	
	section.section-style.how-do-you-wear-it .slider-container {
        padding: 0px 0px;
        grid-gap: 3px;
    }
    
    .how-do-you-wear-it h2 {
		font-size:2rem;
	}
	.how-do-you-wear-it p {
		font-size: 0.8rem;
	}
	
	.shop-grid .item_title {
		width:100%;
		padding:5%;
	}
	
	.shop-grid .item_title h2 {
		font-size:1.2rem;
	}
	
	.shop-grid .item_title p {
	    margin:10px 0 0 0;
	    font-size: 0.75rem;
	}
	
	.shop-grid .item_cta span {
		padding:5px 0px;
		font-size:0.7rem;
		margin-top:10px;
	}
}