:root {
  --primary: #ff0066;      /* left color */
  --secondary: #940054;    /* right color */
}

/* 5-column layout */
.col-lg-2-5 {
	flex: 0 0 20%;
	max-width: 20%;
}

@media (max-width: 991px) {
	.col-lg-2-5 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 575px) {
	.col-lg-2-5 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.card.custom-card-style-1 {
    box-shadow: none;
    transition: all 0.3s ease;
}

.card.custom-card-style-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.card.custom-card-style-1 {
    border-radius: 10px !important;
    overflow: hidden;
}

.card.custom-card-style-1 .card-img-top {
    border-radius: 10px 10px 0 0 !important;
}

/* Default - No shadow */
.card.custom-card-style-1 {
    box-shadow: none;
}

/* Mobile only - Always show shadow */
@media (max-width: 991px) {
    .card.custom-card-style-1 {
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }
}

/* White Text for anchor text */
.white-link {
    color: #ffffff !important;
}

.btn-dark {
	--hover: var(--dark--200);
	background-color: var(--dark);
	border-color: var(--dark) var(--dark) var(--dark-300);
	color: var(--dark-inverse);
}

.appear-animation h1 {
    line-height: 1.6 !important;
    max-width: 850px;
}

/* Product page rolling image hide in mobile view */
@media (max-width: 991px) {
    .gsap-content-images {
        display: none;
    }
}

/* Reduce heading size on mobile */
@media (max-width: 991px) {
    .gsap-content-marker h3 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
}

/* FAQ drop down arrow overlapping padding on mobile */
.accordion-toggle {
    padding-right: 50px !important;
    position: relative;
}