/* Base Layout */
.woo-dyn-attr-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}
.woo-dyn-attr-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.woo-dyn-attr-card {
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-sizing: border-box;
}
.woo-dyn-attr-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.woo-dyn-attr-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}
.woo-dyn-attr-title {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 4px;
	color: #64748b; /* Slate 500 */
}
.woo-dyn-attr-value {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #0f172a; /* Slate 900 */
}
.woo-dyn-attr-anchor-wrapper {
	margin-top: 12px;
}
.woo-dyn-attr-anchor-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	color: #2563eb; /* Blue 600 */
	transition: color 0.3s ease;
}
.woo-dyn-attr-anchor-link:hover {
	color: #1d4ed8; /* Blue 700 */
}
.woo-dyn-attr-notice {
	padding: 24px;
	border: 2px dashed #cbd5e1;
	border-radius: 8px;
	text-align: center;
	color: #64748b;
	background: #f8fafc;
	font-weight: 500;
}

/* Smooth Scroll Fallback */
html {
	scroll-behavior: smooth;
}

/* Pre-defined Skin 1: Minimal */
.woo-skin-style-1 .woo-dyn-attr-card {
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 16px;
	width: 100%;
}
.woo-skin-style-1 .woo-dyn-attr-card:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.woo-skin-style-1 .woo-dyn-attr-title {
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.05em;
}
.woo-skin-style-1 .woo-dyn-attr-icon {
	color: #475569;
}

/* Pre-defined Skin 2: Soft Boxed */
.woo-skin-style-2 .woo-dyn-attr-card {
	background-color: #f8fafc; /* Slate 50 */
	padding: 20px 24px;
	border-radius: 12px;
	flex: 1 1 220px;
	border: 1px solid #f1f5f9;
}
.woo-skin-style-2 .woo-dyn-attr-card:hover {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transform: translateY(-2px);
}
.woo-skin-style-2 .woo-dyn-attr-icon {
	background-color: #f1f5f9; /* Slate 100 */
	padding: 12px;
	border-radius: 12px; /* modern squircle feel */
	color: #334155;
	width: 48px;
	height: 48px;
}

/* Pre-defined Skin 3: Modern Solid */
.woo-skin-style-3 .woo-dyn-attr-card {
	background-color: #0f172a; /* Slate 900 */
	padding: 20px 24px;
	border-radius: 16px;
	flex: 1 1 220px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.woo-skin-style-3 .woo-dyn-attr-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.woo-skin-style-3 .woo-dyn-attr-title {
	color: #94a3b8; /* Slate 400 */
}
.woo-skin-style-3 .woo-dyn-attr-value {
	color: #f8fafc; /* Slate 50 */
}
.woo-skin-style-3 .woo-dyn-attr-icon {
	color: #f8fafc;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 52px;
	height: 52px;
}

/* Pre-defined Skin 4: Outline Bordered */
.woo-skin-style-4 .woo-dyn-attr-card {
	border: 1px solid #e2e8f0; /* Slate 200 */
	padding: 20px 24px;
	border-radius: 12px;
	background-color: transparent;
	flex: 1 1 220px;
}
.woo-skin-style-4 .woo-dyn-attr-card:hover {
	border-color: #94a3b8; /* Slate 400 */
	background-color: #f8fafc;
}

/* --- Dynamic Notices Widget Styles --- */
.woo-dyno-notices-wrapper {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}
.woo-dyno-notice {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid transparent;
	border-right-width: 4px; /* RTL border emphasis */
}

.woo-dyno-notice-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.woo-dyno-notice-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.woo-dyno-notice-title {
	font-weight: 700;
	font-size: 16px;
}

.woo-dyno-notice-content {
	font-size: 14px;
	line-height: 1.6;
}

/* Colors by Type */

/* Note (Blue) */
.woo-dyno-notice-note {
	background-color: #f0f7ff;
	border-color: #cce4ff;
	border-right-color: #0073e6;
}
.woo-dyno-notice-note .woo-dyno-notice-icon-box { color: #0073e6; }
.woo-dyno-notice-note .woo-dyno-notice-title { color: #004d99; }
.woo-dyno-notice-note .woo-dyno-notice-content { color: #335c85; }

/* Tip (Green) */
.woo-dyno-notice-tip {
	background-color: #f0fdf4;
	border-color: #dcfce7;
	border-right-color: #16a34a;
}
.woo-dyno-notice-tip .woo-dyno-notice-icon-box { color: #16a34a; }
.woo-dyno-notice-tip .woo-dyno-notice-title { color: #166534; }
.woo-dyno-notice-tip .woo-dyno-notice-content { color: #14532d; }

/* Warning (Orange) */
.woo-dyno-notice-warning {
	background-color: #fffbeb;
	border-color: #fef3c7;
	border-right-color: #f59e0b;
}
.woo-dyno-notice-warning .woo-dyno-notice-icon-box { color: #f59e0b; }
.woo-dyno-notice-warning .woo-dyno-notice-title { color: #b45309; }
.woo-dyno-notice-warning .woo-dyno-notice-content { color: #78350f; }

/* --- Product Specs Table in Tab --- */
.woo-dyn-specs-tab-content {
	direction: rtl;
	text-align: right;
}
.woo-dyn-specs-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 700;
	color: #3f3f46;
	margin-bottom: 24px;
	padding-right: 0;
}
.woo-dyn-specs-heading span {
	display: inline-block;
	width: 6px;
	height: 24px;
	background-color: #d4b872; /* The gold/brown color in the screenshot */
	border-radius: 4px;
}
.woo-dyn-specs-table-wrapper {
	border: 1px solid #e4e4e7;
	border-radius: 12px;
	overflow: hidden;
}
.woo-dyn-specs-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 !important;
	background-color: #fff;
}
.woo-dyn-specs-table th,
.woo-dyn-specs-table td {
	padding: 16px 24px;
	font-size: 14px;
	line-height: 1.6;
	border-bottom: 1px solid #f4f4f5;
	text-align: right;
}
.woo-dyn-specs-table th {
	width: 30%;
	color: #71717a;
	font-weight: 600;
	background-color: #fff;
	border-left: 1px solid #f4f4f5;
}
.woo-dyn-specs-table td {
	width: 70%;
	color: #3f3f46;
	font-weight: 500;
}
.woo-dyn-specs-table tr:last-child th,
.woo-dyn-specs-table tr:last-child td {
	border-bottom: none;
}
.woo-dyn-specs-table tr:nth-child(even) th,
.woo-dyn-specs-table tr:nth-child(even) td {
	background-color: #fafafa;
}

/* --- Dynamic Product Tabs --- */
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tabs-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	background-color: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 0;
	gap: 0;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 24px;
	background: var(--tab-bg, transparent);
	color: var(--tab-color, #64748b);
	border: none;
	border-bottom: 3px solid transparent;
	border-left: 1px solid #e2e8f0; /* divider between tabs */
	border-radius: 0;
	font-weight: 600;
	font-size: 15px;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.3s ease;
	outline: none;
	box-shadow: none;
	margin: 0;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-button:last-child {
	border-left: none;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-button:hover {
	background-color: var(--tab-bg, #f1f5f9);
	color: var(--tab-color, #334155);
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-button.woo-dyn-tab-active {
	background-color: var(--tab-active-bg, #ffffff);
	color: var(--tab-active-color, #0f172a);
	border-bottom-color: var(--tab-active-color, #3b82f6);
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-icon {
	display: inline-flex;
	font-size: 1.2em;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-icon svg {
	width: 1em;
	height: 1em;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tabs-content-wrapper {
	padding: 32px;
	background: #ffffff;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-content {
	display: none;
	animation: wooDynTabFadeIn 0.4s ease forwards;
	line-height: 1.8;
	color: #334155;
}
.elementor-widget-woo_dyno_product_tabs_widget .woo-dyn-tab-content.woo-dyn-tab-content-active {
	display: block;
}
@keyframes wooDynTabFadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

