/* ============================================================
   Glowshop base: tokens, reset, typography, buttons, utilities
   ============================================================ */

:root {
	--gs-cream: #fbf6f0;
	--gs-teal: #006b69;
	--gs-teal-dark: #00575a;
	--gs-ink: #121212;
	--gs-peach: #ffa46c;
	--gs-mint: #ceebe1;
	--gs-lime: #e6eb96;
	--gs-gray: #f3f3f3;
	--gs-sand: #eae1d8;
	--gs-body-font: 'Figtree', sans-serif;
	--gs-heading-font: 'Bogue', sans-serif;
	--gs-page-width: 1500px;
	--gs-page-pad: 20px;
	--gs-radius-card: 2rem;
	--gs-radius-btn: 40px;
	--gs-radius-input: 24px;
	--gs-grid-gap: 40px;
	--gs-grid-gap-mobile: 20px;
	--gs-header-h: 88px;
	--gs-announce-h: 42px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--gs-body-font);
	font-weight: 400;
	line-height: 1.5;
	color: var(--gs-ink);
	background: var(--gs-cream);
	overflow-x: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	color: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin: 0 0 1em;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	font-weight: 700;
	line-height: 1.15;
}

/* Display headings — script font */
.gs-h0 {
	font-family: var(--gs-heading-font);
	font-weight: 400;
	font-size: clamp(44px, 6.4vw, 92px);
	line-height: 1.05;
	letter-spacing: 0.01em;
}

.gs-h1 {
	font-family: var(--gs-heading-font);
	font-weight: 400;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.1;
}

/* Layout */
.page-width {
	max-width: var(--gs-page-width);
	margin: 0 auto;
	padding-left: var(--gs-page-pad);
	padding-right: var(--gs-page-pad);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

/* Buttons */
.gs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: var(--gs-radius-btn);
	padding: 14px 34px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	border: 1px solid transparent;
	transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
	text-align: center;
}

.gs-btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

.gs-btn--primary {
	background: var(--gs-teal);
	color: #fff;
}

.gs-btn--secondary {
	background: transparent;
	color: var(--gs-ink);
	border-color: var(--gs-ink);
}

.gs-btn--block {
	width: 100%;
}

/* Header spacers & responsive helpers */
.gs-main {
	min-height: 40vh;
}

.gs-only-mobile {
	display: none !important;
}

.gs-hide-desktop {
	display: none;
}

@media (max-width: 989px) {
	:root {
		--gs-grid-gap: var(--gs-grid-gap-mobile);
		--gs-header-h: 64px;
	}

	.gs-only-mobile {
		display: inline-flex !important;
	}

	.gs-only-desktop {
		display: none !important;
	}

	.gs-hide-desktop {
		display: block;
	}

	.gs-hide-mobile {
		display: none !important;
	}
}

/* Generic slider dots */
.gs-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.gs-dots button,
.gs-dots i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(18, 18, 18, 0.25);
	border: 0;
	display: block;
	transition: background 0.2s ease, transform 0.2s ease;
}

.gs-dots .is-active {
	background: var(--gs-teal);
	transform: scale(1.2);
}

/* Newsletter (homepage band) */
.gs-newsletter {
	background: var(--gs-peach);
	padding: 72px 0;
}

.gs-newsletter__box {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.gs-newsletter__heading {
	color: var(--gs-teal);
	margin-bottom: 26px;
}

.gs-newsletter__field {
	position: relative;
	max-width: 440px;
	margin: 0 auto;
}

.gs-newsletter__input {
	width: 100%;
	border: 1px solid var(--gs-teal);
	background: transparent;
	border-radius: var(--gs-radius-input);
	padding: 15px 56px 15px 22px;
	font-size: 15px;
	font-family: var(--gs-body-font);
	color: var(--gs-teal);
	outline: none;
}

.gs-newsletter__input::placeholder {
	color: var(--gs-teal);
	opacity: 0.75;
}

.gs-newsletter__submit {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gs-teal);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gs-newsletter__submit svg {
	width: 18px;
	height: 18px;
}
