/* -----------------------------------------------
   Hero banner overlay text — bottom right
   Used on homepage for UK + international banners
   ----------------------------------------------- */

.hero-banner-wrap {
	position: relative;
}

.hero-overlay-text {
    position: absolute;
    bottom: 80px;
    right: 60px;
    z-index: 100;
    text-align: right;
    pointer-events: none;
    color: #fff;
}

/* Allow any links inside the overlay to be clickable */
.hero-overlay-text a {
	pointer-events: all;
}

/* Large heading — matches the "SUMMER EX-DISPLAY SALE" style */
.hero-overlay-text h2,
.hero-overlay-text h3 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    margin: 0;
    letter-spacing: 0.1em;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Futura', sans-serif;
    text-transform: uppercase;
}
.hero-overlay-text h2 {
    font-size: 4em;	
}

/* Smaller "Discover more >" link */
.hero-overlay-text p,
.hero-overlay-text a {
	color: #fff;
	font-size: clamp(0.85rem, 1.2vw, 1rem);
	text-decoration: none;
	letter-spacing: 0.02em;
}

.hero-overlay-text a:hover {
	text-decoration: underline;
	color: #fff;
}

a.heroLink {
    font-size: 2em;
    font-family: 'futura', sans-serif;
    color: #fff !important;
}

/* Tighten spacing on mobile */
@media (max-width: 767px) {
	.hero-overlay-text {
		bottom: 30px;
		right: 24px;
	}
.hero-overlay-text h2 {
    font-size: 2.75em;
}	
a.heroLink {
    font-size: 1.5em;
}	
}