/*
Theme Name: Flatsome Child
Description: Skyland Global Traders FZC child theme — brand tokens + RTL polish.
Author: Skyland Global Traders
Template: flatsome
Version: 3.0
*/

/* ========== Brand tokens (Navy + Gold) ========== */
:root {
	--skyland-teal:  #0A3D3D;
	--skyland-gold:  #D4A017;
	--skyland-ink:   #1F2937;
	--skyland-mist:  #E6E6E6;
	--skyland-white: #FFFFFF;
}

/* Primary buttons — gold accent on navy */
.button.primary, button.primary, .product .button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background-color: var(--skyland-teal);
	color: var(--skyland-white);
	border-color: var(--skyland-teal);
}
.button.primary:hover, button.primary:hover, .product .button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover {
	background-color: var(--skyland-gold);
	color: var(--skyland-teal);
	border-color: var(--skyland-gold);
}

/* Sale badge — gold */
.badge-container .badge-inner.on-sale {
	background-color: var(--skyland-gold);
	color: var(--skyland-teal);
}

/* Headings — Cormorant Garamond is set via Flatsome options; reinforce weight */
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.01em; }

/* WhatsApp button + trust strip already styled inline (functions.php) */

/* ========== Home page — break sections to full-screen width ==========
 * Hero (ux_banner) is full-width via the page-transparent-header.php template.
 * Each [section] block still sits inside .row.row-main → .large-12.col → .col-inner
 * (max-width ~1080px). Use viewport-width math to break each section out to
 * the screen edges WITHOUT touching the header or any other page.
 * Classic 100vw expansion trick:
 *   width: 100vw; margin-left: calc(50% - 50vw);
 * Scoped to .home so other pages (About, Contact, Privacy, etc.) keep the
 * comfortable narrow body width.
 */
body.home #content.content-area > .row-main > .col > .col-inner > section.section,
body.home #content.content-area > .row-main > .col > .col-inner > .section,
body.home #content.content-area > .row-main > .col > .col-inner > .banner {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: none;
}
/* Re-center the inner content inside the now-100vw sections.
 * Flatsome's `.row` inside `.section-content` has `margin: 0 -15px` for column-
 * gutter compensation, which leaves the row stuck to the section's left edge
 * when the section is wider than the row. Force the row to auto-center
 * horizontally while preserving the negative gutter via padding. */
body.home #content.content-area > .row-main > .col > .col-inner > .section > .section-content > .row,
body.home #content.content-area > .row-main > .col > .col-inner > section.section > .section-content > .row {
	margin-left: auto !important;
	margin-right: auto !important;
}
/* Banner (hero) inner container — same centering treatment */
body.home #content.content-area > .row-main > .col > .col-inner > .banner > .banner-inner,
body.home #content.content-area > .row-main > .col > .col-inner > .banner .banner-layers.container {
	margin-left: auto !important;
	margin-right: auto !important;
}

/* ========== Featured Collection (Phase 11 polish) ========== */
.skyland-featured { background: #FAF7F0; position: relative; }
.skyland-featured::before,
.skyland-featured::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background: var(--skyland-gold);
}
.skyland-featured::before { top: 64px; }
.skyland-featured::after  { bottom: 64px; }
.skyland-featured .eyebrow {
	display: block;
	color: var(--skyland-gold);
	letter-spacing: .42em;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.skyland-featured h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 64px;
	color: var(--skyland-teal);
	font-weight: 500;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	line-height: 1.05;
}
.skyland-featured h2 em {
	font-style: italic;
	color: var(--skyland-gold);
	font-weight: 500;
}
.skyland-featured .lead {
	font-family: "Cormorant Garamond", serif;
	font-style: italic;
	font-size: 22px;
	color: #6B7280;
	max-width: 580px;
	margin: 0 auto 56px;
	line-height: 1.5;
}
/* Product card refinements within the Featured section — keep Flatsome's defaults for image layout, only touch typography */
.skyland-featured .product-small .name a {
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--skyland-teal);
}
.skyland-featured .price ins .amount,
.skyland-featured .price .amount { color: var(--skyland-teal); font-weight: 600; }
.skyland-featured .price del .amount { color: #9CA3AF; font-weight: 400; }
.skyland-featured .product-small .category-name a { color: var(--skyland-gold) !important; letter-spacing: .24em; text-transform: uppercase; font-size: 10px; font-weight: 600; }
.skyland-featured .cta-row { text-align: center; margin-top: 56px; }
.skyland-featured .cta-row a {
	display: inline-block;
	background: var(--skyland-teal);
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 13px;
	border-radius: 2px;
	transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.skyland-featured .cta-row a:hover {
	background: var(--skyland-gold);
	color: var(--skyland-teal);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(10,61,61,.18);
}
@media only screen and (max-width: 48em) {
	.skyland-featured h2 { font-size: 36px; }
	.skyland-featured .lead { font-size: 16px; margin-bottom: 36px; }
	.skyland-featured::before { top: 36px; }
	.skyland-featured::after { bottom: 36px; }
}

/* ========== Hero typography (Phase 11 polish) ========== */
.skyland-hero h1 {
	font-family: "Cormorant Garamond", serif;
	font-size: 84px;
	line-height: 1.02;
	letter-spacing: -0.01em;
	font-weight: 500;
	color: #fff;
	margin: 18px 0 22px;
}
.skyland-hero h1 em { color: var(--skyland-gold); font-style: italic; font-weight: 500; }
.skyland-hero .eyebrow { color: var(--skyland-gold); letter-spacing: .32em; font-weight: 600; font-size: 12px; text-transform: uppercase; }
.skyland-hero p { color: #E5E7EB; font-size: 18px; line-height: 1.65; max-width: 520px; font-weight: 300; margin: 0 0 36px; }
.skyland-hero .btn-primary { display: inline-block; background: var(--skyland-gold); color: var(--skyland-teal); padding: 16px 36px; border-radius: 2px; text-decoration: none; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin-right: 16px; transition: transform .2s ease, box-shadow .2s ease; }
.skyland-hero .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,160,23,.35); }
.skyland-hero .btn-text { display: inline-block; color: #fff; text-decoration: none; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: 13px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.4); }

/* ========== Mobile ========== */
@media only screen and (max-width: 48em) {
	.skyland-trust-strip { font-size: 12px; padding: 12px 14px; }
	.skyland-hero h1 { font-size: 36px; line-height: 1.08; margin: 12px 0 16px; }
	.skyland-hero .eyebrow { font-size: 10px; letter-spacing: .24em; }
	.skyland-hero p { font-size: 14px; line-height: 1.55; margin: 0 0 24px; }
	.skyland-hero .btn-primary { padding: 13px 22px; font-size: 12px; margin-right: 8px; }
	.skyland-hero .btn-text { padding: 13px 0; font-size: 12px; }
}

/* ========== RTL polish (Arabic) ========== */
html[dir="rtl"] {
	font-family: "Tajawal", "Inter", system-ui, sans-serif;
}
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3,
html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6 {
	font-family: "Tajawal", serif;
	letter-spacing: 0;
}

/* ========== Premium boutique commerce polish ========== */

.skyland-shop-modern #main,
.skyland-pdp-modern #main {
	background: #FBF8F1;
}

.skyland-shop-modern .shop-page-title,
.skyland-pdp-modern .shop-page-title {
	background: #fff;
	border-bottom: 1px solid rgba(10,61,61,.08);
	box-shadow: 0 8px 22px rgba(31,41,55,.03);
}

.skyland-shop-modern .shop-page-title .page-title-inner,
.skyland-pdp-modern .shop-page-title .page-title-inner {
	min-height: 68px;
}

.skyland-shop-modern .woocommerce-breadcrumb,
.skyland-shop-modern .woocommerce-breadcrumb a,
.skyland-pdp-modern .woocommerce-breadcrumb,
.skyland-pdp-modern .woocommerce-breadcrumb a {
	color: #6B7280;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.skyland-pdp-modern .product-filter-row,
.skyland-pdp-modern .category-filtering {
	display: none !important;
}

.skyland-shop-intro {
	background: linear-gradient(135deg, #073636 0%, #0A3D3D 58%, #145858 100%);
	border: 1px solid rgba(212,160,23,.3);
	border-radius: 18px;
	box-shadow: 0 20px 55px rgba(10,61,61,.18);
	color: #fff;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin: 8px 0 32px;
	overflow: hidden;
	padding: 38px 42px;
	position: relative;
}

.skyland-shop-intro::after {
	background: rgba(255,255,255,.09);
	content: "";
	height: 1px;
	left: 42px;
	position: absolute;
	right: 42px;
	top: 16px;
}

.skyland-kicker {
	color: var(--skyland-gold);
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .32em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.skyland-shop-intro h1 {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 42px;
	font-weight: 500;
	line-height: 1.08;
	margin: 0 0 12px;
	max-width: 720px;
}

.skyland-shop-intro p {
	color: rgba(255,255,255,.82);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	max-width: 680px;
}

.skyland-shop-promises {
	align-self: end;
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	min-width: 280px;
	padding: 0;
}

.skyland-shop-promises li {
	background: rgba(255,255,255,.09);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	padding: 11px 15px;
}

.skyland-shop-promises li::before {
	color: var(--skyland-gold);
	content: "✓";
	font-weight: 700;
	margin-right: 8px;
}

.skyland-shop-modern .category-filter-row {
	align-items: center;
	display: inline-flex;
	margin: 0 12px 18px 0;
}

.skyland-shop-modern .filter-button {
	background: #fff;
	border: 1px solid rgba(10,61,61,.18);
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(10,61,61,.06);
	color: var(--skyland-teal) !important;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 8px;
	letter-spacing: .16em;
	padding: 10px 18px;
	text-transform: uppercase;
}

.skyland-shop-modern .filter-button:hover {
	background: var(--skyland-teal);
	border-color: var(--skyland-teal);
	color: #fff !important;
}

.skyland-shop-modern .woocommerce-result-count {
	color: #6B7280;
	float: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	margin: 0 0 16px;
	text-transform: uppercase;
}

.skyland-shop-modern .woocommerce-ordering {
	margin-bottom: 18px;
}

.skyland-shop-modern .woocommerce-ordering select {
	background-color: #fff;
	border: 1px solid rgba(10,61,61,.15);
	border-radius: 999px;
	color: var(--skyland-ink);
	font-size: 12px;
	font-weight: 700;
	height: 40px;
	letter-spacing: .06em;
	padding: 0 38px 0 18px;
	text-transform: uppercase;
}

.skyland-shop-modern .products {
	row-gap: 16px;
}

.skyland-shop-modern .products .product-small.box,
.skyland-pdp-modern .related-products-wrapper .product-small.box {
	background: #fff;
	border: 1px solid rgba(10,61,61,.09);
	border-radius: 16px;
	box-shadow: 0 14px 36px rgba(31,41,55,.06);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	padding: 0;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.skyland-shop-modern .products .product-small.box:hover,
.skyland-pdp-modern .related-products-wrapper .product-small.box:hover {
	border-color: rgba(212,160,23,.45);
	box-shadow: 0 20px 46px rgba(10,61,61,.13);
	transform: translateY(-4px);
}

.skyland-shop-modern .product-small .box-image,
.skyland-pdp-modern .related-products-wrapper .product-small .box-image {
	aspect-ratio: 1 / 1;
	background: #F5EFE2;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
}

.skyland-shop-modern .product-small .box-image img,
.skyland-pdp-modern .related-products-wrapper .product-small .box-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.skyland-shop-modern .product-small .box-text,
.skyland-pdp-modern .related-products-wrapper .product-small .box-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 18px 20px;
}

.skyland-shop-modern .product-small .category-name,
.skyland-shop-modern .product-small .category-name a,
.skyland-pdp-modern .related-products-wrapper .category-name,
.skyland-pdp-modern .related-products-wrapper .category-name a {
	color: #A37A10 !important;
	display: block;
	font-size: 10px !important;
	font-weight: 800;
	letter-spacing: .18em;
	line-height: 1.35;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.skyland-shop-modern .product-small .name,
.skyland-shop-modern .product-small .name a,
.skyland-pdp-modern .related-products-wrapper .product-small .name,
.skyland-pdp-modern .related-products-wrapper .product-small .name a {
	color: var(--skyland-teal);
	font-family: "Cormorant Garamond", serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.15;
	margin-bottom: 8px;
}

.skyland-shop-modern .product-small .price,
.skyland-shop-modern .product-small .price .amount,
.skyland-pdp-modern .related-products-wrapper .price,
.skyland-pdp-modern .related-products-wrapper .price .amount {
	color: var(--skyland-teal);
	font-family: "Inter", system-ui, sans-serif;
	font-size: 16px;
	font-weight: 800;
	margin-top: auto;
}

.skyland-shop-modern .product-small .price del .amount,
.skyland-pdp-modern .related-products-wrapper .price del .amount {
	color: #9CA3AF;
	font-weight: 500;
}

.skyland-shop-modern .product-small .woocommerce-Price-currencySymbol,
.skyland-pdp-modern .related-products-wrapper .woocommerce-Price-currencySymbol {
	color: var(--skyland-gold);
	margin-right: 2px;
}

.skyland-shop-modern .badge-container,
.skyland-pdp-modern .badge-container {
	left: 14px !important;
	right: auto !important;
	top: 14px !important;
}

.skyland-shop-modern .badge-container .badge-inner,
.skyland-pdp-modern .badge-container .badge-inner {
	background: var(--skyland-teal) !important;
	border-radius: 4px !important;
	box-shadow: 0 8px 18px rgba(10,61,61,.18);
	color: var(--skyland-gold) !important;
	font-size: 10px;
	font-weight: 800;
	height: auto;
	letter-spacing: .08em;
	line-height: 1;
	min-height: 0;
	min-width: 0;
	padding: 7px 9px;
	text-transform: uppercase;
	width: auto;
}

.skyland-shop-modern .wishlist-icon button,
.skyland-pdp-modern .wishlist-icon button {
	background: rgba(10,61,61,.92) !important;
	border: 0 !important;
	color: #fff !important;
}

#shop-sidebar {
	background: #fff;
}

#shop-sidebar .sidebar-inner {
	padding: 28px 24px;
}

#shop-sidebar .widget-title,
#shop-sidebar .widgettitle,
#shop-sidebar h4 {
	border-bottom: 1px solid rgba(10,61,61,.1);
	color: var(--skyland-teal);
	display: block;
	font-family: "Cormorant Garamond", serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0;
	margin-bottom: 16px;
	padding-bottom: 10px;
}

#shop-sidebar li,
#shop-sidebar a {
	color: #374151;
	font-size: 14px;
}

#shop-sidebar .price_slider_amount .button {
	background: var(--skyland-teal);
	border-radius: 999px;
	color: #fff;
}

#shop-sidebar .price_slider .ui-slider-range {
	background: var(--skyland-gold);
}

#shop-sidebar .price_slider .ui-slider-handle {
	background: var(--skyland-teal);
	border: 2px solid var(--skyland-gold);
}

.skyland-pdp-modern .product-main {
	background: linear-gradient(180deg, #FBF8F1 0%, #fff 86%);
	padding: 34px 0 64px;
}

.skyland-pdp-modern .product-container .content-row {
	align-items: flex-start;
	gap: 28px;
}

.skyland-pdp-modern .product-gallery {
	padding-bottom: 0;
}

.skyland-pdp-modern .product-gallery .product-gallery-slider,
.skyland-pdp-modern .product-gallery .woocommerce-product-gallery__image,
.skyland-pdp-modern .product-gallery .slide,
.skyland-pdp-modern .product-gallery img {
	border-radius: 20px;
	overflow: hidden;
}

.skyland-pdp-modern .product-gallery img {
	background: #F5EFE2;
	box-shadow: 0 24px 55px rgba(31,41,55,.13);
}

.skyland-pdp-modern .product-info.summary {
	background: rgba(255,255,255,.95);
	border: 1px solid rgba(10,61,61,.09);
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(31,41,55,.08);
	padding: 34px 34px 30px;
}

.skyland-pdp-modern .product-info .product-title {
	color: var(--skyland-teal);
	font-family: "Cormorant Garamond", serif;
	font-size: 46px;
	font-weight: 500;
	line-height: 1.05;
	margin-bottom: 12px;
}

.skyland-pdp-modern .product-info .price,
.skyland-pdp-modern .product-info .price .amount {
	color: var(--skyland-teal);
	font-size: 25px;
	font-weight: 800;
}

.skyland-pdp-modern .product-info .woocommerce-product-details__short-description,
.skyland-pdp-modern .product-info .product-short-description {
	color: #4B5563;
	font-size: 16px;
	line-height: 1.7;
	margin: 18px 0;
}

.skyland-pdp-modern .product-info .stock {
	color: #2F855A;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.skyland-pdp-modern form.cart {
	align-items: center;
	background: #F8F3E8;
	border: 1px solid rgba(212,160,23,.22);
	border-radius: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 18px 0 16px;
	padding: 14px;
}

.skyland-pdp-modern form.cart .quantity {
	margin: 0;
}

.skyland-pdp-modern form.cart .single_add_to_cart_button {
	background: var(--skyland-teal) !important;
	border-radius: 999px !important;
	box-shadow: 0 12px 24px rgba(10,61,61,.18);
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 800;
	letter-spacing: .14em;
	min-height: 44px;
	padding: 0 28px !important;
	text-transform: uppercase;
}

.skyland-pdp-modern form.cart .single_add_to_cart_button:hover {
	background: var(--skyland-gold) !important;
	color: var(--skyland-teal) !important;
}

.skyland-pdp-trust {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 16px 0 20px;
}

.skyland-pdp-trust > * {
	background: #fff;
	border: 1px solid rgba(10,61,61,.1);
	border-radius: 14px;
	color: #374151;
	display: block;
	padding: 13px 14px;
	text-decoration: none;
}

.skyland-pdp-trust strong {
	color: var(--skyland-teal);
	display: block;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
}

.skyland-pdp-trust span {
	color: #6B7280;
	display: block;
	font-size: 12px;
	line-height: 1.35;
	margin-top: 3px;
}

.skyland-pdp-modern .product_meta {
	border-top: 1px solid rgba(10,61,61,.1);
	color: #6B7280;
	font-size: 12px;
	margin-top: 18px;
	padding-top: 16px;
}

.skyland-pdp-modern .social-icons a {
	background: var(--skyland-teal);
	border-color: var(--skyland-teal);
	color: #fff;
}

.skyland-pdp-modern .product-footer {
	background: #fff;
	padding-top: 42px;
}

.skyland-pdp-modern .product-footer .woocommerce-tabs {
	border-top: 0;
}

.skyland-pdp-modern .product-footer .nav-tabs,
.skyland-pdp-modern .product-footer .nav-line-bottom {
	border-bottom: 1px solid rgba(10,61,61,.1);
	margin-bottom: 28px;
}

.skyland-pdp-modern .product-footer .nav > li > a {
	color: #6B7280;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.skyland-pdp-modern .product-footer .nav > li.active > a,
.skyland-pdp-modern .product-footer .nav > li > a:hover {
	color: var(--skyland-teal);
}

.skyland-pdp-modern .product-footer .tab-panels {
	color: #4B5563;
	font-size: 16px;
	line-height: 1.8;
	max-width: 920px;
}

.skyland-pdp-modern .related-products-wrapper {
	margin-top: 46px;
}

.skyland-pdp-modern .related-products-wrapper h3,
.skyland-pdp-modern .related-products-wrapper .product-section-title {
	color: var(--skyland-teal);
	font-family: "Cormorant Garamond", serif;
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

@media (max-width: 849px) {
	.skyland-shop-intro {
		grid-template-columns: 1fr;
		padding: 28px 24px;
	}

	.skyland-shop-promises {
		min-width: 0;
	}

	.skyland-pdp-modern .product-info.summary {
		margin-top: 18px;
		padding: 24px 20px;
	}

	.skyland-pdp-modern .product-info .product-title {
		font-size: 36px;
	}

	.skyland-pdp-trust {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 549px) {
	.skyland-shop-modern .shop-page-title .page-title-inner,
	.skyland-pdp-modern .shop-page-title .page-title-inner {
		min-height: 58px;
	}

	.skyland-shop-intro {
		border-radius: 14px;
		margin: 2px 0 22px;
		padding: 24px 18px;
	}

	.skyland-shop-intro h1 {
		font-size: 30px;
	}

	.skyland-shop-intro p {
		font-size: 14px;
	}

	.skyland-shop-promises li {
		border-radius: 12px;
		font-size: 12px;
	}

	.skyland-shop-modern .product-small .box-text,
	.skyland-pdp-modern .related-products-wrapper .product-small .box-text {
		padding: 12px 11px 14px;
	}

	.skyland-shop-modern .product-small .name,
	.skyland-shop-modern .product-small .name a,
	.skyland-pdp-modern .related-products-wrapper .product-small .name,
	.skyland-pdp-modern .related-products-wrapper .product-small .name a {
		font-size: 17px;
	}

	.skyland-shop-modern .product-small .category-name,
	.skyland-shop-modern .product-small .category-name a {
		font-size: 8px !important;
		letter-spacing: .12em;
	}

	.skyland-shop-modern .product-small .price,
	.skyland-shop-modern .product-small .price .amount {
		font-size: 14px;
	}

	.skyland-pdp-modern .product-main {
		padding: 18px 0 36px;
	}

	.skyland-pdp-modern .product-gallery .product-gallery-slider,
	.skyland-pdp-modern .product-gallery .woocommerce-product-gallery__image,
	.skyland-pdp-modern .product-gallery .slide,
	.skyland-pdp-modern .product-gallery img {
		border-radius: 14px;
	}

	.skyland-pdp-modern .product-info.summary {
		border-radius: 16px;
		box-shadow: 0 14px 32px rgba(31,41,55,.08);
	}

	.skyland-pdp-modern form.cart {
		align-items: stretch;
	}

	.skyland-pdp-modern form.cart .single_add_to_cart_button {
		flex: 1 1 auto;
		padding-left: 18px !important;
		padding-right: 18px !important;
	}

	body.skyland-pdp-modern #skyland-whatsapp {
		bottom: 72px;
	}
}
