/**
 * Sælkerabúðin - Custom Styles
 * Global overrides, card styles, hover effects, product grid
 */

/* ─── GLOBAL ────────────────────────────────────── */

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	padding-top: var(--wp--custom--spacing--header-height, 80px);
}

/* Pages with transparent header: no padding — content starts at top */
body.home,
body.page-template-front-page,
body.post-type-archive-product,
body.page-template-page-hafa-samband,
body.page-template-page-um-okkur,
body.page-template-page-eldunarleidbeiningar,
body.page-template-page-skilmalar,
body.page-template-page-personuvernd,
body.page-template-page-opnunartimi,
body.single-product,
body.woocommerce-account {
	padding-top: 0;
}

/* ─── BLOCK STYLE: DARK CARD ───────────────────── */

.is-style-dark-card {
	background-color: var(--wp--preset--color--card-bg);
	border-radius: var(--wp--custom--border--radius);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.is-style-dark-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ─── BLOCK STYLE: CREAM SECTION ───────────────── */

.is-style-cream-section {
	background-color: var(--wp--preset--color--cream-bg);
	color: var(--wp--preset--color--black);
}

.is-style-cream-section h1,
.is-style-cream-section h2,
.is-style-cream-section h3,
.is-style-cream-section h4 {
	color: var(--wp--preset--color--black);
}

.is-style-cream-section p {
	color: #555555;
}

/* ─── BUTTON STYLES ────────────────────────────── */

.is-style-caramel .wp-block-button__link {
	background-color: var(--wp--preset--color--caramel);
	color: var(--wp--preset--color--white);
	border: none;
	padding: 16px 40px;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 500;
	font-size: 0.8125rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

.is-style-caramel .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--dark-caramel);
	box-shadow: 0 0 30px rgba(198, 134, 66, 0.3);
	transform: translateY(-1px);
}

.is-style-caramel-outline .wp-block-button__link {
	background-color: transparent;
	color: var(--wp--preset--color--white);
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 16px 40px;
	font-family: var(--wp--preset--font-family--oswald);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 400;
	font-size: 0.8125rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease;
}

.is-style-caramel-outline .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--caramel);
	color: var(--wp--preset--color--caramel);
	background-color: rgba(255, 255, 255, 0.05);
}

/* ─── PRODUCT CARDS (white cards with image + content) ── */

.saelk-product-card {
	background: #ffffff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.5s ease;
}

.saelk-product-card:hover {
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

.saelk-product-card-image {
	position: relative;
	overflow: hidden;
	height: 280px;
	background-color: #f0f0f0;
}

.saelk-product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.saelk-product-card:hover .saelk-product-card-image img {
	transform: scale(1.15);
}

.saelk-premium-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: #C68642;
	color: white;
	padding: 6px 16px;
	border-radius: 999px;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	z-index: 2;
}

.saelk-product-card-content {
	padding: 24px 32px 32px;
}

.saelk-product-card-content h3 {
	font-family: var(--wp--preset--font-family--antonio);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: #111;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin: 0 0 8px;
	transition: color 0.3s ease;
}

.saelk-product-card:hover .saelk-product-card-content h3 {
	color: #C68642;
}

/* Make "Skoða" link stretch over entire card */
.saelk-product-card {
	position: relative;
}

.saelk-product-card .saelk-product-card-content .has-caramel-color a {
	position: static;
}

.saelk-product-card .saelk-product-card-content .has-caramel-color a::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

.saelk-product-card {
	cursor: pointer;
}

.saelk-product-card-content .saelk-card-desc {
	color: #666;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0 0 24px;
}

.saelk-product-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid #e5e5e5;
}

.saelk-card-price {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.875rem;
	font-weight: 500;
	color: #111;
	letter-spacing: 0.05em;
}

.saelk-card-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #C68642;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.saelk-product-card:hover .saelk-card-link {
	gap: 12px;
}

/* Product grid 3-column layout */
.saelk-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

@media (max-width: 960px) {
	.saelk-product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.saelk-product-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.saelk-product-card-image {
		height: 200px;
	}
}

/* ─── TEXTURE BACKGROUND ──────────────────────── */

.saelk-texture-bg {
	position: relative;
	background-color: #f3f1ed;
}

.saelk-texture-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1732657617698-4a7f7c11762e?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080');
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	pointer-events: none;
}

.saelk-texture-bg > * {
	position: relative;
	z-index: 1;
}

/* ─── CONTACT CARDS (cream bg, white cards) ───── */

.saelk-contact-card {
	background: white;
	border-radius: 1rem;
	padding: 40px 24px;
	text-align: center;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.saelk-contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.saelk-contact-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #C68642;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.saelk-contact-card h4 {
	font-family: var(--wp--preset--font-family--playfair-display);
	font-style: normal;
	font-weight: 700;
	font-size: 1.25rem;
	color: #111;
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.saelk-contact-card p {
	color: #666;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.875rem;
	margin: 0;
}

.saelk-contact-card .saelk-contact-note {
	color: #999;
	font-size: 0.8125rem;
	margin-top: 4px;
}

/* ─── FEATURE CARDS (dark on cream) ────────────── */

.saelk-feature-card {
	background-color: var(--wp--preset--color--dark-bg);
	border-radius: 1rem;
	padding: 32px 24px;
	transition: all 0.5s ease;
	height: 100%;
}

.saelk-feature-card:hover {
	background-color: #C68642;
}

.saelk-feature-card h4 {
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 1.0625rem;
	font-weight: 700;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 16px 0 8px;
}

.saelk-feature-card p {
	color: rgba(255, 255, 255, 0.8);
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.8125rem;
	line-height: 1.6;
	margin: 0;
}

.saelk-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 960px) {
	.saelk-feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.saelk-feature-grid {
		grid-template-columns: 1fr;
	}
}

/* ─── IMAGE HOVER ZOOM ─────────────────────────── */

.saelk-zoom-image {
	overflow: hidden;
	border-radius: var(--wp--custom--border--radius);
}

.saelk-zoom-image img {
	transition: transform 0.7s ease;
}

.saelk-zoom-image:hover img {
	transform: scale(1.1);
}

/* ─── BENTO GRID ───────────────────────────────── */

.saelk-bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.saelk-bento-grid .saelk-bento-large {
	grid-column: span 2;
	grid-row: span 2;
}

@media (max-width: 768px) {
	.saelk-bento-grid {
		grid-template-columns: 1fr;
	}
	.saelk-bento-grid .saelk-bento-large {
		grid-column: span 1;
		grid-row: span 1;
	}
}

/* ─── CATEGORY CARDS (dark cover with hover) ──── */

.saelk-category-card {
	border-radius: var(--wp--custom--border--radius);
	overflow: hidden;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.saelk-category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.saelk-category-card .wp-block-cover__image-background {
	transition: transform 0.7s ease;
}

.saelk-category-card:hover .wp-block-cover__image-background {
	transform: scale(1.1);
}

/* Make category cards fully clickable */
.saelk-category-card {
	position: relative;
	cursor: pointer;
}

.saelk-category-card a {
	position: static;
}

.saelk-category-card a::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
}

/* ─── NEWSLETTER FOOTER FORM ──────────────────── */

.saelk-footer-newsletter input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 12px 0;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.875rem;
	outline: none;
	transition: border-color 0.3s ease;
	margin-bottom: 16px;
}

.saelk-footer-newsletter input:focus {
	border-bottom-color: white;
}

.saelk-footer-newsletter input::placeholder {
	color: #666;
}

.saelk-footer-newsletter button {
	width: 100%;
	background: white;
	color: #1A1A1A;
	border: none;
	padding: 14px 24px;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: 8px;
}

.saelk-footer-newsletter button:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* ─── COVER BLOCK VIDEO FIXES ──────────────────── */

.wp-block-cover video {
	object-fit: cover;
}

/* ─── CARAMEL DIVIDER ──────────────────────────── */

.saelk-caramel-divider {
	width: 60px;
	height: 2px;
	background-color: var(--wp--preset--color--caramel);
}

/* ─── DECORATIVE LINE ──────────────────────────── */

.saelk-line {
	height: 1px;
	width: 64px;
	background-color: #bbb;
	display: inline-block;
	vertical-align: middle;
}

/* ─── ICON BUTTONS (header) ────────────────────── */

.saelk-search-toggle,
.saelk-cart-toggle {
	background: none;
	border: none;
	color: var(--wp--preset--color--white);
	cursor: pointer;
	padding: 8px;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.saelk-search-toggle:hover,
.saelk-cart-toggle:hover {
	color: var(--wp--preset--color--caramel);
}

/* ─── HEADER ICONS (WooCommerce + custom) ──────── */

.saelk-header-icons {
	align-items: center;
}

.saelk-header-icons .wp-block-woocommerce-customer-account {
	color: white;
	transition: color 0.3s ease;
}

.saelk-header-icons .wp-block-woocommerce-customer-account:hover {
	color: var(--wp--preset--color--caramel);
}

.saelk-header-icons .wp-block-woocommerce-customer-account a {
	color: inherit !important;
	display: flex;
	align-items: center;
	padding: 8px;
}

.saelk-header-icons .wp-block-woocommerce-customer-account svg {
	width: 20px;
	height: 20px;
	color: inherit;
}

.saelk-header-icons .wc-block-mini-cart__button {
	background: none !important;
	border: none !important;
	padding: 8px !important;
	color: white !important;
	cursor: pointer;
	transition: color 0.3s ease;
}

.saelk-header-icons .wc-block-mini-cart__button:hover {
	color: var(--wp--preset--color--caramel) !important;
}

.saelk-header-icons .wc-block-mini-cart__button .wc-block-mini-cart__icon {
	width: 20px;
	height: 20px;
}

.saelk-header-icons .wc-block-mini-cart__badge {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.625rem;
	min-width: 16px;
	height: 16px;
	line-height: 16px;
}

/* Hide WooCommerce price display in mini-cart button */
.saelk-header-icons .wc-block-mini-cart__amount {
	display: none;
}

/* ─── OPENING HOURS PLUGIN STYLING ─────────────── */

.opening-hours-container {
	display: block;
	width: 100%;
}

.opening-hours-today {
	display: block;
	text-align: center;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 1.125rem;
	color: var(--wp--preset--color--caramel);
	margin-bottom: 32px;
	cursor: pointer;
}

.opening-hours-today a {
	color: var(--wp--preset--color--caramel);
	text-decoration: none;
}

.opening-hours-container .opening-hours-dropdown,
.opening-hours-container.with-dropdown .opening-hours-dropdown,
.opening-hours-container.dropdown-open .opening-hours-dropdown {
	width: 100% !important;
	display: block !important;
	position: static !important;
	opacity: 1 !important;
	visibility: visible !important;
	max-height: none !important;
	overflow: visible !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	user-select: auto !important;
	-webkit-user-select: auto !important;
	z-index: auto !important;
}

.opening-hours-dropdown h4 {
	display: none !important;
}

.opening-hours-schedule-item {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 16px 0 !important;
	border-bottom: 1px solid #333 !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 1rem !important;
	color: white !important;
	background: transparent !important;
}

.opening-hours-schedule-item:last-child {
	border-bottom: none !important;
}

.opening-hours-schedule-item span {
	color: white !important;
}

.opening-hours-schedule-item span:last-child {
	color: var(--wp--preset--color--gray-300) !important;
}

.dropdown-icon {
	display: none;
}

/* ─── CONTACT PAGE INFO CARDS ──────────────────── */

.saelk-info-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #222;
	border-radius: 0.75rem;
	padding: 20px 24px;
}

.saelk-info-card-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wp--preset--color--caramel);
	flex-shrink: 0;
}

.saelk-info-card-label {
	display: block;
	font-family: var(--wp--preset--font-family--oswald);
	font-size: 0.625rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #9CA3AF;
	margin-bottom: 2px;
}

.saelk-info-card-value {
	display: block;
	font-family: var(--wp--preset--font-family--inter);
	font-size: 0.9375rem;
	color: white;
}

.saelk-info-card-value a {
	color: white;
	text-decoration: none;
}

.saelk-info-card-value a:hover {
	color: var(--wp--preset--color--caramel);
}

/* ─── GRAVITY FORMS DARK STYLING ───────────────── */

.gform_wrapper,
.gform_wrapper * {
	color: white;
}

.gform_wrapper .gfield_label,
.gform_wrapper label {
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.6875rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	color: #9CA3AF !important;
	margin-bottom: 8px !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper select,
.gform_wrapper textarea {
	background-color: #1A1A1A !important;
	border: 1px solid #444 !important;
	border-radius: 0.5rem !important;
	color: white !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.9375rem !important;
	padding: 14px 16px !important;
	transition: border-color 0.3s ease;
}

.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
	border-color: var(--wp--preset--color--caramel) !important;
	outline: none !important;
	box-shadow: none !important;
}

.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder {
	color: #666 !important;
}

.gform_wrapper select {
	appearance: auto;
	color: #999 !important;
	background-color: #1A1A1A !important;
}

.gform_wrapper textarea {
	min-height: 140px !important;
	resize: vertical;
}

.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.8125rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.15em !important;
	padding: 14px 36px !important;
	cursor: pointer;
	transition: background-color 0.3s ease;
	float: right;
}

.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

.gform_wrapper .gfield_description,
.gform_wrapper .gform_required_legend {
	color: #666 !important;
	font-size: 0.75rem !important;
}

.gform_wrapper .gfield_required {
	color: var(--wp--preset--color--caramel) !important;
}

.gform_wrapper .ginput_container_consent label {
	color: #9CA3AF !important;
	font-size: 0.8125rem !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

.gform_wrapper .ginput_container_consent a {
	color: var(--wp--preset--color--caramel) !important;
}

.gform_wrapper .gform_footer {
	text-align: right;
}

/* Hide validation container border */
.gform_wrapper .gform_validation_errors {
	background: #222 !important;
	border-color: #C68642 !important;
}

/* Orbital theme overrides — catch all input types */
.gform_wrapper .gform-theme--framework input:not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.gform_wrapper .gform-theme--framework select,
.gform_wrapper .gform-theme--framework textarea,
.gform_wrapper[data-form-index] input:not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.gform_wrapper[data-form-index] select,
.gform_wrapper[data-form-index] textarea {
	background-color: #1A1A1A !important;
	border: 1px solid #444 !important;
	border-radius: 0.5rem !important;
	color: white !important;
	font-family: var(--wp--preset--font-family--inter) !important;
	font-size: 0.9375rem !important;
	padding: 14px 16px !important;
}

.gform_wrapper[data-form-index] .gfield_label,
.gform_wrapper[data-form-index] label {
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.6875rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	color: #9CA3AF !important;
}

.gform_wrapper[data-form-index] .gform_button,
.gform_wrapper[data-form-index] input[type="submit"],
.gform_wrapper[data-form-index] button[type="submit"] {
	background-color: var(--wp--preset--color--caramel) !important;
	color: white !important;
	border: none !important;
	border-radius: 2rem !important;
	font-family: var(--wp--preset--font-family--oswald) !important;
	font-size: 0.8125rem !important;
	font-weight: 500 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.15em !important;
	padding: 14px 36px !important;
	cursor: pointer;
	transition: background-color 0.3s ease;
	float: right;
}

.gform_wrapper[data-form-index] .gform_button:hover,
.gform_wrapper[data-form-index] input[type="submit"]:hover,
.gform_wrapper[data-form-index] button[type="submit"]:hover {
	background-color: var(--wp--preset--color--dark-caramel) !important;
}

/* ─── HERO IMAGE DIMMING (contact + subpages) ──── */

.page-template-page-hafa-samband .wp-block-cover img,
.page-template-page-hafa-samband .wp-block-cover video,
.page-template-page-um-okkur .wp-block-cover img,
.page-template-page-eldunarleidbeiningar .wp-block-cover img {
	opacity: 0.15 !important;
}

/* ─── HERO BOTTOM FADE (contact page) ──────────── */

.page-template-page-hafa-samband .wp-block-cover::after,
.page-template-page-eldunarleidbeiningar .wp-block-cover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to bottom, transparent, #1A1A1A);
	z-index: 1;
	pointer-events: none;
}

/* ─── DARK TABLE STYLING ───────────────────────── */

.wp-block-table.is-style-stripes table {
	border-color: #333 !important;
}

.wp-block-table.is-style-stripes table th {
	background-color: #333 !important;
	color: white !important;
	border-color: #444 !important;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #222 !important;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
	background-color: #1A1A1A !important;
}

.wp-block-table.is-style-stripes tbody td {
	color: #D1D5DB !important;
	border-color: #333 !important;
}

/* ─── SCROLL-BASED ANIMATIONS ──────────────────── */

.saelk-fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.saelk-fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.saelk-stagger > * {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.saelk-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.saelk-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.saelk-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.saelk-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.saelk-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.saelk-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

.saelk-stagger.is-visible > * {
	opacity: 1;
	transform: translateY(0);
}

/* ─── RESPONSIVE: GIFT CARD SECTION ────────────── */

@media (max-width: 768px) {
	section [style*="grid-template-columns: 1fr 1fr"] {
		grid-template-columns: 1fr !important;
	}
	.saelk-contact-card {
		padding: 32px 20px;
	}
}

/* ─── RESPONSIVE: FOOTER ──────────────────────── */

@media (max-width: 960px) {
	.saelk-footer [style*="grid-template-columns:repeat(4"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 600px) {
	.saelk-footer [style*="grid-template-columns:repeat(4"] {
		grid-template-columns: 1fr !important;
	}
}

/* ─── RESPONSIVE: CONTACT CARDS ───────────────── */

@media (max-width: 768px) {
	[style*="grid-template-columns:repeat(3,1fr)"] {
		grid-template-columns: 1fr !important;
	}
}
