/* ========================================
   STATIC PAGES - UNIFIED STYLES
   ======================================== */
/* Shared styles for all static pages: About Us, FAQ, Privacy Policy, Terms & Conditions */

/* ========================================
   BASE RESET & CONTAINER
   ======================================== */

/* Reset article wrapper to not interfere */
.page-template .page-content {
	margin: 0 !important;
	padding: 0 !important;
}

/* Base container for all static pages */
.page-template .page-content .static-page-content,
body.page-template .page-content .static-page-content,
.page-content .static-page-content,
.static-page-content {
	width: 100% !important;
	max-width: min(90%, 1200px) !important;
	margin: 0 auto !important;
	padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 60px) !important;
	box-sizing: border-box;
	font-family: "Nunito", sans-serif;
	background-color: #ffffff;
	color: #000000;
}

/* ========================================
   TYPOGRAPHY - HEADINGS
   ======================================== */

/* Main Title (h1) - Centered, Large, Bold */
.static-page-content h1,
.static-page-content .page-title {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(32px, 4vw, 48px) !important;
	font-weight: 700 !important;
	color: #000000 !important;
	text-align: center !important;
	margin: clamp(40px, 6vw, 64px) 0 clamp(48px, 7vw, 80px) 0 !important;
	padding: 0 !important;
	line-height: 1.2 !important;
	letter-spacing: 0;
	text-transform: none;
}

/* Section Headings (h2) - Left-aligned, Bold */
.static-page-content h2,
.static-page-content .section-heading {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(24px, 3vw, 32px) !important;
	font-weight: 700 !important;
	color: #000000 !important;
	text-align: left !important;
	margin: clamp(48px, 6vw, 64px) 0 clamp(24px, 3vw, 32px) 0 !important;
	padding: 0 !important;
	line-height: 1.3 !important;
	letter-spacing: 0;
	text-transform: none;
}

.static-page-content h2:first-of-type,
.static-page-content .section-heading:first-of-type {
	margin-top: 0;
}

/* Subsection Headings (h3) */
.static-page-content h3 {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(20px, 2.5vw, 24px) !important;
	font-weight: 700 !important;
	color: #000000 !important;
	text-align: left !important;
	margin: clamp(32px, 4vw, 48px) 0 clamp(16px, 2vw, 20px) 0 !important;
	padding: 0 !important;
	line-height: 1.4 !important;
	letter-spacing: 0;
	text-transform: none;
}

/* ========================================
   TYPOGRAPHY - BODY TEXT
   ======================================== */

/* Paragraphs - Left-aligned, Regular Weight */
.static-page-content p {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(16px, 2vw, 18px) !important;
	font-weight: 400 !important;
	color: #000000 !important;
	text-align: left !important;
	margin: 0 0 clamp(20px, 2.5vw, 24px) 0 !important;
	padding: 0 !important;
	line-height: 1.7 !important;
	letter-spacing: 0;
}

.static-page-content p:last-child {
	margin-bottom: 0;
}

/* Bold text within paragraphs */
.static-page-content p strong,
.static-page-content p b {
	font-weight: 700 !important;
	font-size: clamp(17px, 2.2vw, 20px) !important;
}

/* ========================================
   LISTS
   ======================================== */

/* Unordered Lists */
.static-page-content ul {
	list-style-type: disc;
	list-style-position: outside;
	margin: clamp(24px, 3vw, 32px) 0;
	padding: 0 0 0 clamp(32px, 4vw, 48px);
}

.static-page-content ul li {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(16px, 2vw, 18px) !important;
	font-weight: 400 !important;
	color: #000000 !important;
	text-align: left;
	margin: 0 0 clamp(16px, 2vw, 20px) 0;
	padding: 0;
	line-height: 1.7;
}

.static-page-content ul li:last-child {
	margin-bottom: 0;
}

.static-page-content ul li p {
	display: inline;
	margin: 0;
}

/* Ordered Lists */
.static-page-content ol {
	list-style-type: decimal;
	list-style-position: outside;
	margin: clamp(24px, 3vw, 32px) 0;
	padding: 0 0 0 clamp(32px, 4vw, 48px);
}

.static-page-content ol li {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(16px, 2vw, 18px) !important;
	font-weight: 400 !important;
	color: #000000 !important;
	text-align: left;
	margin: 0 0 clamp(16px, 2vw, 20px) 0;
	padding: 0;
	line-height: 1.7;
}

.static-page-content ol li:last-child {
	margin-bottom: 0;
}

/* ========================================
   QUOTES & SPECIAL ELEMENTS
   ======================================== */

/* Blockquotes */
.static-page-content blockquote {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(20px, 2.5vw, 28px) !important;
	font-weight: 700 !important;
	color: #000000 !important;
	text-align: left !important;
	margin: clamp(24px, 3vw, 32px) 0;
	padding: 0;
	border: none;
	line-height: 1.5;
	font-style: italic;
	quotes: '"' '"';
}

/* ========================================
   LINKS
   ======================================== */

.static-page-content a {
	color: #000000 !important;
	text-decoration: none !important;
}

.static-page-content a:hover {
	text-decoration: underline !important;
}

/* Exclude shop-now-button from default link styling */
.static-page-content a.shop-now-button {
	color: #ffffff !important;
}

.static-page-content a.shop-now-button:hover {
	color: #ffffff !important;
	text-decoration: none !important;
}

.static-page-content a[href^="mailto:"] {
	color: #000000 !important;
	text-decoration: none !important;
	font-weight: 400;
}

.static-page-content a[href^="mailto:"]:hover {
	text-decoration: underline !important;
}

/* ========================================
   PAGE-SPECIFIC VARIATIONS
   ======================================== */

/* About Us - Uppercase h1, larger h2 */
.static-page-content.about-us-content h1 {
	font-size: clamp(36px, 4.5vw, 56px) !important;
	text-transform: uppercase !important;
	margin: 0 0 clamp(48px, 7vw, 80px) 0 !important;
}

.static-page-content.about-us-content h2 {
	font-size: clamp(26px, 3.2vw, 40px) !important;
	margin: clamp(56px, 7vw, 80px) 0 clamp(28px, 3.5vw, 40px) 0 !important;
}

.static-page-content.about-us-content p {
	line-height: 1.75 !important;
	margin: 0 0 clamp(24px, 3vw, 32px) 0 !important;
}

/* FAQ - Smaller h2 (questions) */
.static-page-content.faq-page-content h2 {
	font-size: clamp(20px, 2.5vw, 24px) !important;
	margin: clamp(40px, 5vw, 56px) 0 clamp(16px, 2vw, 20px) 0 !important;
	line-height: 1.4 !important;
}

.static-page-content.faq-page-content h2:first-of-type {
	margin-top: clamp(32px, 4vw, 48px) !important;
}

.static-page-content.faq-page-content p {
	margin: 0 0 clamp(16px, 2vw, 20px) 0 !important;
}

/* ========================================
   SHOP NOW BUTTON
   ======================================== */

/* Shop Now Button - Black pill-shaped button with white text */
.static-page-content .shop-now-button,
.static-page-content a.shop-now-button,
.about-us-content .shop-now-button,
.about-us-content a.shop-now-button,
.privacy-policy-content .shop-now-button,
.privacy-policy-content a.shop-now-button,
.terms-of-service-content .shop-now-button,
.terms-of-service-content a.shop-now-button {
	display: block;
	width: fit-content;
	margin: clamp(64px, 8vw, 96px) auto 0;
	padding: clamp(16px, 2.2vw, 20px) clamp(40px, 5vw, 64px);
	background-color: #000000 !important;
	color: #ffffff !important;
	border: none;
	border-radius: 62px;
	font-family: "Nunito", sans-serif;
	font-size: clamp(16px, 2vw, 18px);
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-sizing: border-box;
}

.static-page-content .shop-now-button:hover,
.static-page-content a.shop-now-button:hover,
.about-us-content .shop-now-button:hover,
.about-us-content a.shop-now-button:hover,
.privacy-policy-content .shop-now-button:hover,
.privacy-policy-content a.shop-now-button:hover,
.terms-of-service-content .shop-now-button:hover,
.terms-of-service-content a.shop-now-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	text-decoration: none !important;
	color: #ffffff !important;
}

.static-page-content .shop-now-button:active,
.static-page-content a.shop-now-button:active {
	transform: translateY(0);
}

/* ========================================
   SPACING UTILITIES
   ======================================== */

/* Ensure proper spacing between sections */
.static-page-content > * + h2,
.static-page-content > * + .section-heading {
	margin-top: clamp(48px, 6vw, 80px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
	.page-template .page-content .static-page-content,
	body.page-template .page-content .static-page-content,
	.page-content .static-page-content,
	.static-page-content {
		padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 24px) !important;
	}

	.static-page-content h1,
	.static-page-content .page-title {
		font-size: clamp(28px, 6vw, 40px) !important;
		margin-top: clamp(32px, 5vw, 48px) !important;
		margin-bottom: clamp(40px, 6vw, 56px) !important;
	}

	.static-page-content h2,
	.static-page-content .section-heading {
		font-size: clamp(20px, 5vw, 28px) !important;
		margin-top: clamp(40px, 6vw, 56px) !important;
		margin-bottom: clamp(20px, 3vw, 28px) !important;
	}

	.static-page-content h3 {
		font-size: clamp(18px, 4.5vw, 22px) !important;
		margin-top: clamp(28px, 4vw, 40px) !important;
		margin-bottom: clamp(14px, 2.5vw, 18px) !important;
	}

	.static-page-content p {
		font-size: clamp(15px, 4vw, 17px) !important;
		line-height: 1.6 !important;
		margin-bottom: clamp(16px, 2.2vw, 20px) !important;
	}

	.static-page-content p strong,
	.static-page-content p b {
		font-size: clamp(16px, 4.2vw, 19px) !important;
	}

	.static-page-content ul,
	.static-page-content ol {
		padding-left: clamp(24px, 5vw, 36px);
	}

	.static-page-content ul li,
	.static-page-content ol li {
		font-size: clamp(15px, 4vw, 17px) !important;
	}

	.static-page-content blockquote {
		font-size: clamp(18px, 4.5vw, 24px) !important;
	}

	/* About Us responsive */
	.static-page-content.about-us-content h1 {
		font-size: clamp(28px, 6vw, 40px) !important;
		margin-bottom: clamp(32px, 5vw, 48px) !important;
	}

	.static-page-content.about-us-content h2 {
		font-size: clamp(20px, 5vw, 28px) !important;
		margin-top: clamp(40px, 6vw, 56px) !important;
		margin-bottom: clamp(20px, 3vw, 28px) !important;
	}

	/* FAQ responsive */
	.static-page-content.faq-page-content h2 {
		font-size: clamp(18px, 4.5vw, 22px) !important;
		margin-top: clamp(32px, 5vw, 44px) !important;
		margin-bottom: clamp(14px, 2.5vw, 18px) !important;
	}

	.static-page-content.faq-page-content h2:first-of-type {
		margin-top: clamp(28px, 4vw, 40px) !important;
	}

	.static-page-content.faq-page-content p {
		font-size: clamp(15px, 4vw, 17px) !important;
		margin-bottom: clamp(14px, 2vw, 18px) !important;
	}

	/* Shop Now Button responsive */
	.static-page-content .shop-now-button,
	.static-page-content a.shop-now-button {
		margin-top: clamp(48px, 6vw, 72px);
		padding: clamp(14px, 2vw, 18px) clamp(32px, 4vw, 56px);
		font-size: clamp(15px, 4vw, 17px);
	}
}

