/*
Theme Name: Sockoa Avada Child Theme
Description: Avada child theme for the Sockoa e-commerce website.
Author: Sockoa
Template: Avada
Version: 1.0.0
Text Domain: sockoa
*/

@font-face {
	font-family: "Sockoa Display";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("assets/fonts/barlow-condensed-600-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Sockoa Display";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("assets/fonts/barlow-condensed-700-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Sockoa Sans";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

.sockoa-home {
	--sockoa-blue: #0868f2;
	--sockoa-ink: #0d1728;
	--sockoa-muted: #5d6878;
	--sockoa-soft: #f4f7fb;
	font-family: "Sockoa Sans", Arial, sans-serif;
	color: var(--sockoa-ink);
}

.sockoa-home h2,
.sockoa-home h3,
.sockoa-home .sockoa-eyebrow {
	font-family: "Sockoa Display", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.sockoa-section {
	padding: 88px 24px;
}

.sockoa-section__inner {
	width: min(1280px, 100%);
	margin: 0 auto;
}

.sockoa-section__heading {
	margin-bottom: 38px;
	text-align: center;
}

.sockoa-section__heading h2 {
	margin: 0;
	font-size: clamp(2.25rem, 5vw, 4.25rem);
	line-height: 0.95;
}

.sockoa-section__heading p {
	max-width: 620px;
	margin: 16px auto 0;
	color: var(--sockoa-muted);
}

.sockoa-product-grid,
.sockoa-collection-grid,
.sockoa-trust-grid {
	display: grid;
	gap: 24px;
}

.sockoa-product-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sockoa-product-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 16px 46px rgb(13 23 40 / 9%);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.sockoa-product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 58px rgb(13 23 40 / 15%);
}

.sockoa-product-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: contain;
	background: #fff;
}

.sockoa-product-card__body {
	padding: 22px;
}

.sockoa-product-card h3 {
	margin: 0 0 6px;
	font-size: 1.55rem;
}

.sockoa-product-card p {
	margin: 0;
	color: var(--sockoa-muted);
}

.sockoa-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 1;
	padding: 7px 11px;
	background: var(--sockoa-ink);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
}

.sockoa-collection-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sockoa-collection-card {
	min-height: 360px;
	display: flex;
	align-items: flex-end;
	padding: 34px;
	background: linear-gradient(145deg, #101b2e, #0868f2);
	color: #fff;
	border-radius: 20px;
}

.sockoa-collection-card:nth-child(2) {
	background: linear-gradient(145deg, #0868f2, #58a6ff);
}

.sockoa-collection-card h3 {
	margin: 0 0 8px;
	font-size: clamp(2.2rem, 4vw, 3.7rem);
	color: #fff;
}

.sockoa-collection-card p {
	max-width: 34ch;
	margin: 0 0 22px;
}

.sockoa-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	background: #fff;
	color: var(--sockoa-ink);
	font-weight: 700;
	border-radius: 8px;
}

.sockoa-trust {
	background: var(--sockoa-soft);
}

.sockoa-trust-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sockoa-trust-item {
	padding: 26px;
	background: #fff;
	border-radius: 14px;
}

.sockoa-trust-item strong {
	display: block;
	margin-bottom: 5px;
}

.sockoa-trust-item span {
	color: var(--sockoa-muted);
	font-size: 0.9rem;
}

.sockoa-technical {
	background: linear-gradient(120deg, #07101e, #10294d);
	color: #fff;
}

.sockoa-technical h2 {
	max-width: 720px;
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(2.6rem, 6vw, 5.4rem);
	line-height: 0.92;
}

.sockoa-technical p {
	max-width: 650px;
	color: #c8d4e5;
}

.sockoa-feature-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 28px;
	max-width: 760px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.sockoa-feature-list li::before {
	content: "✓";
	margin-right: 10px;
	color: #59a6ff;
	font-weight: 800;
}

@media (max-width: 900px) {
	.sockoa-section {
		padding: 64px 20px;
	}

	.sockoa-product-grid,
	.sockoa-trust-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.sockoa-product-grid,
	.sockoa-collection-grid,
	.sockoa-trust-grid,
	.sockoa-feature-list {
		grid-template-columns: 1fr;
	}

	.sockoa-collection-card {
		min-height: 280px;
	}
}
