/* 
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: India Byrd — Modern Fashion & Apparel Store. Warm, elegant, and sophisticated style suitable for clothing e-commerce.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 2.0.0-fashion
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Header logo SVG sizing */
#site-logo #site-logo-inner a img.custom-logo {
	height: 40px;
	width: auto;
	max-width: 200px;
}

/* ===== FOOTER — India Byrd 4-Column Premium Layout ===== */
/* Column 1: Brand + Slogan | Column 2: Policies | Column 3: Shop | Column 4: Newsletter */

#footer {
	background: linear-gradient(180deg, #2C2522 0%, #1F1A17 100%);
	border-top: 4px solid var(--ib-primary);
	position: relative;
	overflow: hidden;
}

#footer::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(159, 18, 57, 0.06) 0%, transparent 70%);
	pointer-events: none;
	border-radius: 50%;
}

#footer-widgets {
	background: transparent;
	padding: 90px 0 70px;
	position: relative;
	z-index: 1;
}

#footer-widgets > .container {
	max-width: 1280px;
	padding: 0 24px;
}

#footer-widgets .container-inner,
#footer-widgets .oceanwp-row,
#footer-widgets .oceanwp-container,
#footer-widgets .footer-widgets-inner {
	display: grid !important;
	grid-template-columns: 2.1fr 1fr 1fr 1.6fr !important;
	gap: 52px !important;
	align-items: start;
}

/* Override OceanWP .span_1_of_4 float + width that breaks grid */
#footer-widgets .footer-box {
	padding: 0;
	margin-bottom: 0;
	float: none !important;
	width: auto !important;
	clear: none !important;
}

@media (max-width: 1024px) {
	#footer-widgets .container-inner,
	#footer-widgets .oceanwp-row,
	#footer-widgets .oceanwp-container,
	#footer-widgets .footer-widgets-inner {
		grid-template-columns: 1fr 1fr !important;
		gap: 44px !important;
	}
}

@media (max-width: 640px) {
	#footer-widgets .container-inner,
	#footer-widgets .oceanwp-row,
	#footer-widgets .oceanwp-container,
	#footer-widgets .footer-widgets-inner {
		grid-template-columns: 1fr !important;
		gap: 36px !important;
	}
	#footer-widgets .footer-box {
		width: 100% !important;
	}
}

/* --- Widget Titles --- */
#footer-widgets .footer-box .widget-title {
	font-family: 'Playfair Display', serif !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #EDE4D7;
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(237, 228, 215, 0.15);
	position: relative;
	line-height: 1.4;
}

#footer-widgets .footer-box .widget-title::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 32px;
	height: 3px;
	background: var(--ib-primary);
	border-radius: 2px;
}

/* --- Column 1: Brand Introduction --- */
#footer-widgets .footer-box .textwidget {
	font-size: 15px;
	line-height: 1.85;
	color: #B8A99F;
}

#footer-widgets .footer-box .textwidget strong {
	color: #EDE4D7;
	font-weight: 600;
	font-size: 17px;
	display: block;
	margin-bottom: 10px;
}

/* Brand tagline highlight */
#footer-widgets .footer-box .textwidget .ib-footer-tagline {
	display: inline-block;
	margin-top: 16px;
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ib-primary);
	letter-spacing: 1.2px;
	border: 1px solid rgba(159, 18, 57, 0.35);
	border-radius: 4px;
	background: rgba(159, 18, 57, 0.08);
}

/* --- Column 2 & 3: Menu Links (Policies & Shop) --- */
#footer-widgets .menu li {
	margin-bottom: 11px;
	list-style: none;
}

#footer-widgets .menu li a {
	font-size: 14.5px;
	color: #B8A99F;
	padding: 4px 0;
	display: inline-block;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	text-decoration: none;
	letter-spacing: 0.3px;
}

#footer-widgets .menu li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--ib-primary);
	transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#footer-widgets .menu li a:hover {
	color: #EDE4D7;
	padding-left: 6px;
}

#footer-widgets .menu li a:hover::before {
	width: 100%;
}

/* --- Column 4: Newsletter --- */
#footer-widgets .footer-box .newsletter-desc {
	color: #B8A99F;
	font-size: 14.5px;
	line-height: 1.75;
	margin-bottom: 20px;
	max-width: 280px;
}

#footer-widgets .footer-box .newsletter-form input[type="email"] {
	background: rgba(255, 255, 255, 0.06);
	border: 1.5px solid rgba(237, 228, 215, 0.18);
	color: #EDE4D7;
	padding: 14px 18px;
	width: 100%;
	border-radius: 8px;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	margin-bottom: 14px;
	transition: all 0.35s ease;
	outline: none;
	box-sizing: border-box;
}

#footer-widgets .footer-box .newsletter-form input[type="email"]::placeholder {
	color: rgba(237, 228, 215, 0.35);
	font-size: 13.5px;
}

#footer-widgets .footer-box .newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: var(--ib-primary);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(159, 18, 57, 0.12);
}

#footer-widgets .footer-box .newsletter-form button {
	background: var(--ib-primary);
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13.5px;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.6px;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	text-transform: uppercase;
}

#footer-widgets .footer-box .newsletter-form button:hover {
	background: var(--ib-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -8px rgba(159, 18, 57, 0.45);
}

#footer-widgets .footer-box .newsletter-note {
	font-size: 12px;
	color: #6B5D57;
	margin-top: 14px;
	line-height: 1.5;
}

/* --- Footer Links (Generic) --- */
#footer-widgets .footer-box a,
#footer-widgets .contact-info-widget a {
	color: #D4C3B5;
	text-decoration: none;
	transition: color 0.3s ease;
}

#footer-widgets .footer-box a:hover,
#footer-widgets .contact-info-widget a:hover {
	color: var(--ib-primary);
}

#footer-widgets .contact-info-widget i,
#footer-widgets .contact-info-widget .owp-icon {
	color: var(--ib-primary);
	margin-right: 10px;
}

#footer-widgets .contact-info-widget li,
#footer-widgets .oceanwp-contact-text,
#footer-widgets .oceanwp-contact-title {
	font-size: 14.5px;
	line-height: 2;
	color: #B8A99F;
}

/* --- Footer Bottom Bar --- */
#footer-bottom {
	background: #181411;
	border-top: 1px solid rgba(237, 228, 215, 0.06);
	padding: 24px 0;
	position: relative;
	z-index: 1;
}

#footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

#footer-bottom #copyright {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #6B5D57;
	text-transform: none;
}

#footer-bottom #copyright a {
	color: #B8A99F;
	text-decoration: none;
	transition: color 0.3s ease;
}

#footer-bottom #copyright a:hover {
	color: var(--ib-primary);
}

#footer-bottom #footer-bottom-menu .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#footer-bottom #footer-bottom-menu a {
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: #7A6E6A;
	text-transform: none;
	text-decoration: none;
	transition: color 0.3s ease;
}

#footer-bottom #footer-bottom-menu a:hover {
	color: var(--ib-primary);
}

@media (max-width: 768px) {
	#footer-widgets { padding: 50px 0 32px; }
	#footer-widgets .footer-box { padding: 0 0 24px; }
	#footer-bottom-inner { flex-direction: column; text-align: center; }
	#footer-bottom #footer-bottom-menu .menu { justify-content: center; }
}

/* ===== TYPOGRAPHY - Fashion Forward 2026 ===== */

/* Elegant serif for headings - Perfect for fashion & lifestyle brand */
h1, h2, h3, h4, h5, h6,
.woocommerce div.product .product_title,
.woocommerce .related.products h2,
.woocommerce .upsells.products h2,
.woocommerce div.product .woocommerce-tabs .panel h2,
.page .entry-header .entry-title,
.single-post .entry-header .single-post-title,
.ib-hero h1,
.ib-products-section h2,
.ib-cta-banner h2 {
	font-family: 'Playfair Display', serif !important;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

/* Clean, modern sans-serif for body text and UI elements */
body,
p,
li,
a:not(.elementor-button):not(.button),
span,
div,
input,
textarea,
select,
button,
.woocommerce ul.products li.product .title a,
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .price,
.woocommerce div.product .summary .price,
.woocommerce .woocommerce-ordering select,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout .woocommerce h3,
.woocommerce-checkout #order_review_heading,
.blog-entry .blog-entry-inner p,
.ib-hero-sub,
.ib-section-sub,
.ib-feature p {
	font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
	letter-spacing: -0.01em;
	line-height: 1.7;
}

/* Product names use Manrope for premium feel */
.woocommerce ul.products li.product .title a,
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product li.title h2 {
	font-family: 'Manrope', 'Inter', sans-serif !important;
	font-weight: 600;
}

/* ===== INDIA BYRD — Modern Fashion Style 2026 ===== */
/* Warm, elegant, sophisticated palette perfect for clothing & apparel */
:root {
	--ib-primary: #9F1239;           /* Rich Terracotta / Rose - Elegant fashion color */
	--ib-primary-dark: #7C0F2F;
	--ib-accent: #C2410C;            /* Warm Amber accent */
	--ib-cream: #F9F4ED;             /* Warm cream background */
	--ib-beige: #EDE4D7;             /* Soft beige */
	--ib-dark: #2C2522;              /* Warm deep neutral */
	--ib-text: #3F2E2A;              /* Rich warm text */
	--ib-gray: #6B5D57;              /* Warm gray */
	--ib-light: #F9F4ED;
}

/* Hide default page title on Home */
.page-id-17 .page-header {
	display: none;
}

/* Force hero to be full-width - Clean approach */
.page-id-17 .ib-hero {
	width: 100% !important;
	max-width: 100% !important;
	margin: -20px calc(-50vw + 50%) 0 !important;
	padding-left: 5vw !important;
	padding-right: 5vw !important;
	box-sizing: border-box;
}

/* ===== HERO - Full-width Fashion Banner (FIXED) ===== */
.ib-hero {
	background: linear-gradient(135deg, 
		var(--ib-dark) 0%, 
		#3A2F2A 45%, 
		#5C4033 100%);
	color: white;
	min-height: 85vh;
	padding: 160px 40px 140px;
	margin: -20px -20px 0;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

/* Ensure full width even inside Elementor containers */
.ib-hero,
.ib-hero > div,
.ib-hero > .elementor-container,
.ib-hero > .elementor-row,
.ib-hero > .elementor-column,
.ib-hero .elementor-widget-container {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.ib-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(159, 18, 57, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.ib-hero-inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}

.ib-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(12px);
	color: white;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 30px;
	margin-bottom: 28px;
	border: 1px solid rgba(255,255,255,0.2);
}

.ib-hero-badge::before {
	content: '✦';
	color: var(--ib-accent);
}

.ib-hero h1 {
	font-size: clamp(3.2rem, 8vw, 5.2rem);
	font-weight: 600;
	line-height: 1.05;
	color: white;
	margin: 0 0 24px;
	text-shadow: 0 4px 30px rgba(0,0,0,0.3);
	letter-spacing: -0.04em;
}

.ib-hero-sub {
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	color: rgba(255,255,255,0.9);
	line-height: 1.65;
	margin-bottom: 48px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

/* Refined CTA buttons */
.ib-hero-cta {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 12px;
}

.ib-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	font-weight: 600;
	font-size: 13.5px;
	letter-spacing: 1px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.ib-btn-primary {
	background: var(--ib-primary);
	color: white !important;
	border: none;
}

.ib-btn-primary:hover {
	background: var(--ib-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 20px 40px -10px rgba(159, 18, 57, 0.4);
}

.ib-btn-outline {
	background: transparent;
	color: white !important;
	border: 2px solid rgba(255,255,255,0.85);
}

.ib-btn-outline:hover {
	background: white;
	color: var(--ib-dark) !important;
	border-color: white;
	transform: translateY(-2px);
}

/* ===== FEATURES - Clean & Elegant ===== */
.ib-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	padding: 100px 40px;
	max-width: 1200px;
	margin: 0 auto;
	background: var(--ib-light);
}

.ib-feature {
	text-align: center;
	padding: 20px;
	transition: transform 0.4s ease;
}

.ib-feature:hover {
	transform: translateY(-8px);
}

.ib-feature h3 {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--ib-dark);
	margin-bottom: 16px;
}

.ib-feature p {
	font-size: 1.02rem;
	color: var(--ib-gray);
	line-height: 1.75;
	max-width: 280px;
	margin: 0 auto;
}

/* ===== PRODUCTS SECTION - Premium Fashion Display ===== */
.ib-products-section {
	padding: 100px 40px;
	background: var(--ib-light);
	margin: 0 -20px;
	text-align: center;
}

.ib-products-section h2 {
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--ib-dark);
	margin-bottom: 16px;
}

.ib-section-sub {
	color: var(--ib-gray);
	margin-bottom: 52px;
	font-size: 1.1rem;
	max-width: 460px;
	margin-left: auto;
	margin-right: auto;
}

.ib-products-section .woocommerce ul.products {
	margin-bottom: 0;
}

/* ===== CTA BANNER - Warm & Inviting ===== */
.ib-cta-banner {
	background: linear-gradient(135deg, var(--ib-primary) 0%, var(--ib-accent) 100%);
	color: white;
	text-align: center;
	padding: 92px 40px;
	margin: 0 -20px -20px;
	position: relative;
}

.ib-cta-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.ib-cta-banner h2 {
	font-size: 2.6rem;
	font-weight: 600;
	color: white;
	margin-bottom: 20px;
	position: relative;
}

.ib-cta-banner p {
	color: rgba(255,255,255,0.9);
	margin-bottom: 36px;
	font-size: 1.15rem;
	position: relative;
}

/* Responsive */
@media (max-width: 768px) {
	.ib-hero {
		min-height: 85vh;
		padding: 100px 20px 90px;
		margin: -20px -20px 0;
	}
	.ib-hero h1 {
		font-size: 2.8rem;
	}
	.ib-features { 
		grid-template-columns: 1fr; 
		gap: 32px; 
		padding: 60px 20px; 
	}
	.ib-products-section,
	.ib-cta-banner {
		padding: 60px 20px;
	}
}

@media (max-width: 480px) {
	.ib-hero {
		padding: 90px 15px 80px;
		min-height: 90vh;
	}
}

/* ===== WOOCOMMERCE - Refined Fashion Styling ===== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce span.onsale {
	background-color: var(--ib-primary) !important;
	border-radius: 6px;
	font-weight: 600;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background-color: var(--ib-primary-dark) !important;
	transform: translateY(-1px);
}

.woocommerce span.onsale {
	background-color: var(--ib-accent) !important;
	border-radius: 4px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
}

/* Product price - Premium feel */
.woocommerce ul.products li.product .price,
.woocommerce div.product .summary .price {
	color: var(--ib-primary) !important;
	font-weight: 600;
}

/* Header accent */
#site-header {
	border-bottom: 3px solid var(--ib-primary);
	box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

/* Product card improvements */
.woocommerce ul.products li.product .product-inner {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 12px;
	overflow: hidden;
}

.woocommerce ul.products li.product .product-inner:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

/* Add to cart button refinement */
.woocommerce ul.products li.product .button {
	border-radius: 6px;
	padding: 10px 24px;
	font-size: 13px;
}
