/* 
 * Spicy Cat Group Elementor Widget Styles 
 * These styles provide the base structure. Colors and Typography are overridable via Elementor.
 */

/* ==============================================================
   Portfolio (Brands) Widget
   ============================================================== */
.elementor-widget-spicycat_portfolio .brands-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.elementor-widget-spicycat_portfolio .brands-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.elementor-widget-spicycat_portfolio .brands-grid {
		grid-template-columns: 1fr;
	}
}

.elementor-widget-spicycat_portfolio .brand-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: #FFFFFF;
	position: relative;
	height: 420px; /* Fixed elegant card height */
}

.elementor-widget-spicycat_portfolio .brand-card:hover,
.elementor-widget-spicycat_portfolio .brand-card.mobile-reveal {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.elementor-widget-spicycat_portfolio .brand-card .brand-img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.elementor-widget-spicycat_portfolio .brand-card:hover .brand-img,
.elementor-widget-spicycat_portfolio .brand-card.mobile-reveal .brand-img {
	transform: scale(1.08);
}

.elementor-widget-spicycat_portfolio .brand-card .badge {
	position: absolute;
	top: 20px;
	left: 20px;
	right: auto;
	background: #D4B26F;
	color: #110A0A;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	z-index: 3;
	box-shadow: 0 4px 15px rgba(0,0,0,0.25);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid rgba(255,255,255,0.1);
}

.elementor-widget-spicycat_portfolio .brand-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(17, 10, 10, 0.95) 0%, rgba(17, 10, 10, 0.65) 45%, rgba(17, 10, 10, 0.1) 80%, transparent 100%);
	padding: 30px 24px;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #FFFFFF;
}

/* Initially compress content by pushing description and link away */
.elementor-widget-spicycat_portfolio .brand-title {
	font-size: 1.6rem;
	font-weight: 600;
	color: #FFFFFF;
	transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(115px);
	margin-bottom: 6px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.elementor-widget-spicycat_portfolio .brand-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elementor-widget-spicycat_portfolio .brand-content a {
	color: #D4B26F;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.elementor-widget-spicycat_portfolio .brand-content a i {
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.elementor-widget-spicycat_portfolio .brand-content a:hover i {
	transform: translateX(5px);
}

/* Premium Frosted Glass Reveal on Hover */
.elementor-widget-spicycat_portfolio .brand-card:hover .brand-content,
.elementor-widget-spicycat_portfolio .brand-card.mobile-reveal .brand-content {
	background: rgba(17, 10, 10, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	justify-content: center;
}

.elementor-widget-spicycat_portfolio .brand-card:hover .brand-title,
.elementor-widget-spicycat_portfolio .brand-card.mobile-reveal .brand-title {
	transform: translateY(0);
	color: #D4B26F;
	text-shadow: none;
}

.elementor-widget-spicycat_portfolio .brand-card:hover .brand-desc,
.elementor-widget-spicycat_portfolio .brand-card.mobile-reveal .brand-desc {
	opacity: 1;
	transform: translateY(0);
}

.elementor-widget-spicycat_portfolio .brand-card:hover .brand-content a,
.elementor-widget-spicycat_portfolio .brand-card.mobile-reveal .brand-content a {
	opacity: 1;
	transform: translateY(0);
}


/* ==============================================================
   Investor Relations Widget
   ============================================================== */
.elementor-widget-spicycat_investor_relations .ir-header-wrap {
	display: flex; 
	justify-content: space-between; 
	align-items: flex-end; 
	margin-bottom: 40px; 
	flex-wrap: wrap; 
	gap: 20px;
}

.elementor-widget-spicycat_investor_relations .ir-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.elementor-widget-spicycat_investor_relations .ir-card {
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(212, 178, 111, 0.1);
	padding: 35px 30px;
	border-radius: 8px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elementor-widget-spicycat_investor_relations .ir-card:hover {
	background-color: rgba(255, 255, 255, 0.06);
	border-color: #D4B26F;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.elementor-widget-spicycat_investor_relations .ir-card i,
.elementor-widget-spicycat_investor_relations .ir-card svg {
	font-size: 2rem;
	color: #E5C07B;
	fill: #E5C07B;
	margin-bottom: 20px;
	display: inline-block;
}

.elementor-widget-spicycat_investor_relations .ir-card h3 {
	color: #FFFFFF;
	margin-bottom: 12px;
	margin-top: 0;
}

.elementor-widget-spicycat_investor_relations .ir-card p {
	color: rgba(255,255,255,0.7);
	margin-top: 10px;
	line-height: 1.7;
}

.elementor-widget-spicycat_investor_relations .ir-link {
	display: inline-flex;
	align-items: center;
	color: #E5C07B;
	font-weight: 500;
	margin-top: 24px;
	text-decoration: none;
}

.elementor-widget-spicycat_investor_relations .ir-link i {
	font-size: 1rem;
	margin-left: 8px;
	margin-bottom: 0;
	color: inherit;
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.elementor-widget-spicycat_investor_relations .ir-link:hover i {
	transform: translateX(5px);
}

.elementor-widget-spicycat_investor_relations .subtitle {
	color: #D4B26F;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.5rem;
	display: block;
	font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.elementor-widget-spicycat_investor_relations h2,
.elementor-widget-spicycat_portfolio h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: 1.25rem;
	margin-top: 0;
}

.elementor-widget-spicycat_investor_relations .btn-outline {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 4px;
	font-weight: 500;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	background: transparent;
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
}

.elementor-widget-spicycat_investor_relations .btn-outline:hover {
	background: #FFFFFF;
	color: #110A0A;
}

/* ==============================================================
   Core Value Widget Styles
   ============================================================== */
.elementor-widget-spicycat_core_value .core-value-section {
	text-align: center;
}

.elementor-widget-spicycat_core_value .core-value-title {
	font-size: 2.2rem;
	color: #000;
	margin-bottom: 50px;
	text-transform: uppercase;
	font-weight: 700;
}

.elementor-widget-spicycat_core_value .core-value-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.elementor-widget-spicycat_core_value .value-col {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
}

@media (max-width: 768px) {
	.elementor-widget-spicycat_core_value .value-col {
		gap: 15px;
	}
}

.elementor-widget-spicycat_core_value .value-letter-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #FCFAF5;
	border: 2px solid #D4B26F;
	color: #D4B26F;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3rem;
	font-weight: 700;
	flex-shrink: 0;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.elementor-widget-spicycat_core_value .value-letter-circle {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}
}

.elementor-widget-spicycat_core_value .value-card {
	background-color: #FCFAF5;
	border: 1px solid #EAE0D5;
	border-left: 4px solid #D4B26F;
	border-top: 1px solid #EAE0D5;
	color: #555555;
	padding: 25px 30px;
	border-radius: 6px;
	flex-grow: 1;
	text-align: left;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
	.elementor-widget-spicycat_core_value .value-card {
		padding: 20px 15px;
	}
}

.elementor-widget-spicycat_core_value .value-card h3 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	font-weight: 700;
	color: #6E0D13;
}

.elementor-widget-spicycat_core_value .value-card .value-sub {
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #D4B26F;
}

.elementor-widget-spicycat_core_value .value-card p.en {
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.4;
}

.elementor-widget-spicycat_core_value .value-card p.th {
	font-size: 0.85rem;
	line-height: 1.4;
	font-weight: 500;
	color: #7E7E7E;
}

.elementor-widget-spicycat_core_value .core-value-footer {
	text-align: center;
	font-weight: 700;
	font-size: 1.1rem;
	margin-top: 40px;
	color: #000;
}

.elementor-widget-spicycat_core_value .core-value-footer span {
	display: block;
	font-size: 0.95rem;
	margin-top: 5px;
	font-weight: 600;
}

/* ==============================================================
   Milestone Widget Styles
   ============================================================== */
.elementor-widget-spicycat_milestone .milestone-slider {
	display: flex;
	max-width: 1000px;
	margin: 50px auto;
	gap: 40px;
	align-items: stretch;
}

.elementor-widget-spicycat_milestone .ms-nav-wrapper {
	flex: 0 0 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-right: 30px;
}

.elementor-widget-spicycat_milestone .ms-nav-arrow {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	max-width: 40px;
	max-height: 40px;
	padding: 0;
	border-radius: 50%;
	background-color: #8892B0;
	color: white;
	border: none;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1rem;
	transition: all 0.3s ease;
	z-index: 5;
	flex-shrink: 0;
	box-sizing: border-box;
}

.elementor-widget-spicycat_milestone .ms-nav-arrow:hover { 
	background-color: #6E0D13; 
}

.elementor-widget-spicycat_milestone .ms-nav-arrow:disabled { 
	opacity: 0.5; 
	cursor: not-allowed; 
}

.elementor-widget-spicycat_milestone .ms-prev::before { 
	content: "\f077"; 
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
}

.elementor-widget-spicycat_milestone .ms-next::before { 
	content: "\f078"; 
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
}

.elementor-widget-spicycat_milestone .ms-timeline {
	flex: 1;
	position: relative;
	width: 100%;
	margin: 20px 0;
	min-height: 350px;
}

.elementor-widget-spicycat_milestone .ms-line {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 2px;
	background-color: #EAE0D5;
	z-index: 1;
}

.elementor-widget-spicycat_milestone .ms-line-progress {
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	background-color: #EB5757;
	z-index: 2;
	transition: height 0.4s ease, width 0.4s ease;
	height: var(--progress, 0%);
}

.elementor-widget-spicycat_milestone .ms-nav-items {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	z-index: 3;
}

.elementor-widget-spicycat_milestone .ms-nav-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	cursor: pointer;
	width: 100%;
	height: 30px;
}

.elementor-widget-spicycat_milestone .ms-year {
	font-size: 1.1rem;
	font-weight: 600;
	color: #7E7E7E;
	margin-right: 20px;
	transition: all 0.3s ease;
}

.elementor-widget-spicycat_milestone .ms-dot {
	position: absolute;
	right: -5px;
	width: 12px;
	height: 12px;
	background-color: #EAE0D5;
	border-radius: 50%;
	transition: all 0.3s ease;
}

/* Active states */
.elementor-widget-spicycat_milestone .ms-nav-item.active .ms-year {
	color: #EB5757;
	font-size: 1.3rem;
	font-weight: 700;
}

.elementor-widget-spicycat_milestone .ms-nav-item.active .ms-dot {
	background-color: #EB5757;
	box-shadow: 0 0 0 4px rgba(235, 87, 87, 0.2);
}

/* Content Area */
.elementor-widget-spicycat_milestone .ms-content-area {
	flex: 1;
	background: #FDFBF7;
	border: 1px solid #EAE0D5;
	border-radius: 8px;
	padding: 50px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	overflow: hidden;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.elementor-widget-spicycat_milestone .ms-slide {
	display: none;
	animation: fadeInMs 0.4s ease forwards;
	position: relative;
	z-index: 2;
}

.elementor-widget-spicycat_milestone .ms-slide.active { 
	display: block; 
}

@keyframes fadeInMs {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.elementor-widget-spicycat_milestone .ms-slide-title {
	font-size: 2rem;
	font-weight: 700;
	color: #6E0D13;
	margin-bottom: 15px;
	margin-top: 0;
}

.elementor-widget-spicycat_milestone .ms-slide-line {
	width: 60px;
	height: 4px;
	background-color: #EB5757;
	margin-bottom: 25px;
}

.elementor-widget-spicycat_milestone .ms-slide-desc {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #555555;
}

.elementor-widget-spicycat_milestone .ms-slide-year-bg {
	position: absolute;
	bottom: -10px;
	right: 20px;
	font-size: 8rem;
	font-weight: 700;
	color: rgba(0,0,0,0.03);
	line-height: 1;
	pointer-events: none;
	z-index: 1;
}

/* Mobile Navigation (Horizontal) */
@media (max-width: 768px) {
	.elementor-widget-spicycat_milestone .milestone-slider {
		flex-direction: column;
		gap: 20px;
	}
	
	.elementor-widget-spicycat_milestone .ms-nav-arrow {
		display: flex; /* Show arrows on mobile */
	}

	.elementor-widget-spicycat_milestone .ms-nav-wrapper {
		flex: none;
		flex-direction: row;
		padding-right: 0;
		width: 100%;
	}
	
	.elementor-widget-spicycat_milestone .ms-prev::before { content: "\f053"; } /* chevron-left */
	.elementor-widget-spicycat_milestone .ms-next::before { content: "\f054"; } /* chevron-right */
	
	.elementor-widget-spicycat_milestone .ms-timeline {
		height: 60px;
		margin: 0 20px;
		width: 100%;
		min-height: auto;
	}

	.elementor-widget-spicycat_milestone .ms-line {
		top: 50%;
		bottom: auto;
		left: 0;
		right: 0;
		height: 2px;
		width: 100%;
		transform: translateY(-50%);
	}

	.elementor-widget-spicycat_milestone .ms-line-progress {
		top: 50%;
		left: 0;
		right: auto;
		height: 2px !important;
		width: 50% !important;
		transform: translateY(-50%);
	}

	.elementor-widget-spicycat_milestone .ms-nav-items {
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}

	.elementor-widget-spicycat_milestone .ms-nav-item {
		width: 60px;
		height: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-bottom: 0;
	}
	
	.elementor-widget-spicycat_milestone .ms-nav-item:not(.active) { 
		display: none; 
	}

	.elementor-widget-spicycat_milestone .ms-year {
		margin-right: 0;
		margin-bottom: 0;
		top: 0px;
		position: absolute;
		font-size: 0.9rem;
	}

	.elementor-widget-spicycat_milestone .ms-nav-item.active .ms-year {
		font-size: 1rem;
		top: 0px;
	}

	.elementor-widget-spicycat_milestone .ms-dot {
		right: auto;
		bottom: 24px;
		position: absolute;
	}

	.elementor-widget-spicycat_milestone .ms-content-area {
		padding: 30px 20px;
		min-height: 300px;
	}

	.elementor-widget-spicycat_milestone .ms-slide-title {
		font-size: 1.5rem;
	}

	.elementor-widget-spicycat_milestone .ms-slide-desc {
		font-size: 0.95rem;
	}

	.elementor-widget-spicycat_milestone .ms-slide-year-bg {
		font-size: 5rem;
		bottom: 0;
		right: 10px;
	}
}

/* ==========================================
   Branches Carousel Section
   ========================================== */
.elementor-widget-spicycat_branches .branches-carousel-container {
  position: relative;
  width: 100%;
}

.elementor-widget-spicycat_branches .branches-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-bottom: 10px;
}
.elementor-widget-spicycat_branches .branches-carousel-track::-webkit-scrollbar {
  display: none;
}

.elementor-widget-spicycat_branches .branch-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .elementor-widget-spicycat_branches .branch-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .elementor-widget-spicycat_branches .branch-card {
    flex: 0 0 85%;
  }
}

.elementor-widget-spicycat_branches .branch-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.elementor-widget-spicycat_branches .branch-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.elementor-widget-spicycat_branches .branch-name {
  color: #6E0D13;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
  margin-top: 0;
}

.elementor-widget-spicycat_branches .branch-address {
  color: #7E7E7E;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
  margin-top: 0;
}

.elementor-widget-spicycat_branches .branch-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.elementor-widget-spicycat_branches .branch-phone {
  color: #555555;
  font-size: 0.95rem;
  font-weight: 600;
}
.elementor-widget-spicycat_branches .branch-phone i {
  margin-right: 6px;
  color: #EB5757;
}

.elementor-widget-spicycat_branches .branch-map-btn {
  background: #8B0000;
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.elementor-widget-spicycat_branches .branch-map-btn:hover {
  background: #660000;
  color: white;
}

.elementor-widget-spicycat_branches .branches-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.elementor-widget-spicycat_branches .branches-counter {
  color: #6E0D13;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.elementor-widget-spicycat_branches .branches-nav {
  display: flex;
  gap: 12px;
}

.elementor-widget-spicycat_branches .branch-nav-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  padding: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #6E0D13;
  border: 1px solid #cccccc;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  box-sizing: border-box;
}
.elementor-widget-spicycat_branches .branch-nav-btn:hover {
  background: #f5f5f5;
}
.elementor-widget-spicycat_branches .branch-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ==============================================================
   News Widget Styles
   ============================================================== */
.elementor-widget-spicycat_news .grid-news {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 992px) {
  .elementor-widget-spicycat_news .grid-news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .elementor-widget-spicycat_news .grid-news {
    grid-template-columns: 1fr;
  }
}

.elementor-widget-spicycat_news .news-card {
  border: 1px solid #EFEAE4;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.elementor-widget-spicycat_news .news-card:hover {
  border-color: #D4B26F;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.elementor-widget-spicycat_news .news-img-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

.elementor-widget-spicycat_news .news-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elementor-widget-spicycat_news .news-card.has-zoom:hover .news-img {
  transform: scale(1.08);
}

.elementor-widget-spicycat_news .news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.elementor-widget-spicycat_news .news-date {
  font-size: 0.85rem;
  color: #D4B26F;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.elementor-widget-spicycat_news .news-title {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.elementor-widget-spicycat_news .news-title a {
  color: #2C2424;
  text-decoration: none;
  transition: color 0.2s ease;
}

.elementor-widget-spicycat_news .news-title a:hover,
.elementor-widget-spicycat_news .news-card:hover .news-title a {
  color: #6E0D13;
}

.elementor-widget-spicycat_news .news-excerpt {
  color: #7A6F6F;
  font-size: 0.95rem;
  margin: 0 0 18px 0;
  line-height: 1.6;
}

.elementor-widget-spicycat_news .news-readmore-wrapper {
  margin-top: auto;
}

.elementor-widget-spicycat_news .news-readmore {
  color: #6E0D13;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.elementor-widget-spicycat_news .news-readmore i {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.elementor-widget-spicycat_news .news-readmore:hover,
.elementor-widget-spicycat_news .news-card:hover .news-readmore {
  color: #D4B26F;
}

.elementor-widget-spicycat_news .news-readmore:hover i,
.elementor-widget-spicycat_news .news-card:hover .news-readmore i {
  transform: translateX(4px);
}

/* Pagination Styles matching mockup */
.elementor-widget-spicycat_news .pagination-wrapper {
  margin-top: 50px;
  text-align: center;
}

.elementor-widget-spicycat_news .pagination,
.elementor-widget-spicycat_news .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.elementor-widget-spicycat_news .page-numbers:not(.dots),
.elementor-widget-spicycat_news .page-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  border: 1px solid #EFEAE4;
  color: #7A6F6F;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
}

.elementor-widget-spicycat_news .page-numbers:not(.dots):hover,
.elementor-widget-spicycat_news .page-numbers.current,
.elementor-widget-spicycat_news .page-link:hover,
.elementor-widget-spicycat_news .page-link.active {
  background: #6E0D13;
  color: #FFFFFF;
  border-color: #6E0D13;
}

.elementor-widget-spicycat_news .page-numbers.dots {
  border: none;
  background: transparent;
  color: #7A6F6F;
  letter-spacing: 2px;
}

.elementor-widget-spicycat_news .spicycat-no-posts {
  text-align: center;
  padding: 40px;
  color: #7A6F6F;
  font-size: 1.1rem;
  border: 1px dashed #EFEAE4;
  border-radius: 8px;
}

/* ==============================================================
   Spicy Cat Stats Grid Widget Styles (offering.html)
   ============================================================== */
.elementor-widget-spicycat_stats_grid .stats-header-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.elementor-widget-spicycat_stats_grid .stat-box {
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.elementor-widget-spicycat_stats_grid .stat-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 178, 111, 0.15);
}

.elementor-widget-spicycat_stats_grid .stat-box.white {
  background: #FFFFFF;
  border: 1px solid #EFEAE4;
  color: #6E0D13;
}

.elementor-widget-spicycat_stats_grid .stat-box.gold {
  background: #D4B26F;
  color: #FFFFFF;
  border: 1px solid #D4B26F;
}

.elementor-widget-spicycat_stats_grid .stat-box.red {
  background: #6E0D13;
  color: #FFFFFF;
  border: 1px solid #6E0D13;
}

.elementor-widget-spicycat_stats_grid .stat-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.95;
}

.elementor-widget-spicycat_stats_grid .stat-box.white .stat-title {
  color: #666666;
}

.elementor-widget-spicycat_stats_grid .stat-box.gold .stat-title,
.elementor-widget-spicycat_stats_grid .stat-box.red .stat-title {
  color: rgba(255, 255, 255, 0.9);
}

.elementor-widget-spicycat_stats_grid .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.elementor-widget-spicycat_stats_grid .stat-box.white .stat-value {
  color: #6E0D13;
}

.elementor-widget-spicycat_stats_grid .stat-box.gold .stat-value,
.elementor-widget-spicycat_stats_grid .stat-box.red .stat-value {
  color: #FFFFFF;
}

.elementor-widget-spicycat_stats_grid .stat-sub {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.4;
}

.elementor-widget-spicycat_stats_grid .stat-box.white .stat-sub {
  color: #666666;
}

.elementor-widget-spicycat_stats_grid .stat-box.gold .stat-sub,
.elementor-widget-spicycat_stats_grid .stat-box.red .stat-sub {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .elementor-widget-spicycat_stats_grid .stats-header-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .elementor-widget-spicycat_stats_grid .stat-box {
    padding: 20px 15px;
  }
  .elementor-widget-spicycat_stats_grid .stat-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .elementor-widget-spicycat_stats_grid .stats-header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .elementor-widget-spicycat_stats_grid .stat-box {
    padding: 18px 15px;
  }
  .elementor-widget-spicycat_stats_grid .stat-value {
    font-size: 1.4rem;
  }
}

/* ==============================================================
   Spicy Cat Section Header Widget Styles
   ============================================================== */
.elementor-widget-spicycat_section_header .section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 50px 0 30px;
}

.elementor-widget-spicycat_section_header .section-number,
.elementor-widget-spicycat_section_header .section-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
  background-color: #6E0D13;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.elementor-widget-spicycat_section_header .section-icon i {
  font-size: 1.2rem;
  color: inherit;
}

.elementor-widget-spicycat_section_header .section-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}


.elementor-widget-spicycat_section_header .section-title h1,
.elementor-widget-spicycat_section_header .section-title h2,
.elementor-widget-spicycat_section_header .section-title h3,
.elementor-widget-spicycat_section_header .section-title h4,
.elementor-widget-spicycat_section_header .section-title h5,
.elementor-widget-spicycat_section_header .section-title h6 {
  color: #6E0D13;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.elementor-widget-spicycat_section_header .section-title p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7A6F6F;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .elementor-widget-spicycat_section_header .section-header {
    margin: 35px 0 20px;
    gap: 12px;
  }
  .elementor-widget-spicycat_section_header .section-number,
  .elementor-widget-spicycat_section_header .section-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: 1rem;
  }
  .elementor-widget-spicycat_section_header .section-icon i {
    font-size: 1rem;
  }
  .elementor-widget-spicycat_section_header .section-icon svg {
    width: 1rem;
    height: 1rem;
  }
  .elementor-widget-spicycat_section_header .section-title h1,
  .elementor-widget-spicycat_section_header .section-title h2,
  .elementor-widget-spicycat_section_header .section-title h3,
  .elementor-widget-spicycat_section_header .section-title h4,
  .elementor-widget-spicycat_section_header .section-title h5,
  .elementor-widget-spicycat_section_header .section-title h6 {
    font-size: 1.25rem;
  }
  .elementor-widget-spicycat_section_header .section-title p {
    font-size: 0.78rem;
  }
}

/* ==============================================================
   Spicy Cat IR Roadmap Timeline Widget Styles
   ============================================================== */
.elementor-widget-spicycat_ir_timeline .content-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.elementor-widget-spicycat_ir_timeline .timeline-container {
  position: relative;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}

.elementor-widget-spicycat_ir_timeline .timeline-line {
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(to right, #888888 33%, #d32f2f 66%, #6E0D13 100%);
  z-index: 1;
}

.elementor-widget-spicycat_ir_timeline .timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 31%;
  background: transparent;
  padding: 0 5px;
  box-sizing: border-box;
}

.elementor-widget-spicycat_ir_timeline .timeline-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 15px;
  border: 4px solid #FFFFFF;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  line-height: 1;
}

.elementor-widget-spicycat_ir_timeline .icon-grey {
  background-color: #888888;
}

.elementor-widget-spicycat_ir_timeline .icon-red {
  background-color: #d32f2f;
}

.elementor-widget-spicycat_ir_timeline .icon-darkred {
  background-color: #6E0D13;
}

.elementor-widget-spicycat_ir_timeline .timeline-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: #2C2424;
}

.elementor-widget-spicycat_ir_timeline .timeline-sub {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #333333;
}

.elementor-widget-spicycat_ir_timeline .timeline-desc {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .elementor-widget-spicycat_ir_timeline .timeline-container {
    flex-direction: column;
    padding: 10px 0;
    gap: 35px;
  }

  .elementor-widget-spicycat_ir_timeline .timeline-line {
    display: none;
  }

  .elementor-widget-spicycat_ir_timeline .timeline-item {
    width: 100%;
    text-align: left;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 4px 16px;
    background: transparent;
    padding: 0;
  }

  .elementor-widget-spicycat_ir_timeline .timeline-icon {
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 0;
    flex-shrink: 0;
    border-width: 2px;
  }

  .elementor-widget-spicycat_ir_timeline .timeline-title,
  .elementor-widget-spicycat_ir_timeline .timeline-sub,
  .elementor-widget-spicycat_ir_timeline .timeline-desc {
    grid-column: 2;
  }
}

/* ==============================================================
   Spicy Cat Use of Funds Grid Widget Styles
   ============================================================== */
.elementor-widget-spicycat_funds_grid .funds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.elementor-widget-spicycat_funds_grid .fund-card {
  background: #FFFFFF;
  border: 1px solid #EFEAE4;
  border-radius: 8px;
  padding: 25px 25px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-top: 4px solid #d32f2f;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.elementor-widget-spicycat_funds_grid .fund-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 178, 111, 0.12);
}

.elementor-widget-spicycat_funds_grid .fund-card.red-top {
  border-top-color: #d32f2f;
}

.elementor-widget-spicycat_funds_grid .fund-card.gold-top {
  border-top-color: #D4B26F;
}

.elementor-widget-spicycat_funds_grid .fund-card.green-top {
  border-top-color: #618A3D;
}

.elementor-widget-spicycat_funds_grid .fund-tag {
  position: absolute;
  top: -15px;
  left: 20px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.elementor-widget-spicycat_funds_grid .fund-tag.red-tag {
  background-color: #d32f2f;
}

.elementor-widget-spicycat_funds_grid .fund-tag.gold-tag {
  background-color: #D4B26F;
}

.elementor-widget-spicycat_funds_grid .fund-tag.green-tag {
  background-color: #618A3D;
}

.elementor-widget-spicycat_funds_grid .fund-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6E0D13;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.elementor-widget-spicycat_funds_grid .fund-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #6E0D13;
  margin-bottom: 15px;
  line-height: 1.2;
}

.elementor-widget-spicycat_funds_grid .fund-sub {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .elementor-widget-spicycat_funds_grid .funds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
  .elementor-widget-spicycat_funds_grid .fund-card {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .elementor-widget-spicycat_funds_grid .funds-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .elementor-widget-spicycat_funds_grid .fund-card {
    padding: 30px 25px;
    margin-top: 20px;
  }
}

/* ==============================================================
   Spicy Cat Shareholders Cap Table Widget Styles
   ============================================================== */
.elementor-widget-spicycat_shareholding_table .cap-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.elementor-widget-spicycat_shareholding_table .cap-table-grid.cap-table-grid-single {
  grid-template-columns: 1fr;
}

.elementor-widget-spicycat_shareholding_table .cap-table-container {
  background: #FFFFFF;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 15px;
}

.elementor-widget-spicycat_shareholding_table .table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  width: 100%;
}

.elementor-widget-spicycat_shareholding_table .table-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.elementor-widget-spicycat_shareholding_table .table-scroll-wrapper::-webkit-scrollbar-track {
  background: #EBE8E0;
  border-radius: 3px;
}

.elementor-widget-spicycat_shareholding_table .table-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #D4B26F;
  border-radius: 3px;
}

.elementor-widget-spicycat_shareholding_table .cap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0;
}

.elementor-widget-spicycat_shareholding_table .cap-table th {
  background: #6E0D13;
  color: #FFFFFF;
  padding: 16px 20px;
  text-align: right;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 1px solid #D4B26F;
  line-height: 1.4;
}

.elementor-widget-spicycat_shareholding_table .cap-table th:first-child,
.elementor-widget-spicycat_shareholding_table .cap-table th.col-no,
.elementor-widget-spicycat_shareholding_table .cap-table th.col-name {
  text-align: left;
}

.elementor-widget-spicycat_shareholding_table .cap-table td {
  padding: 14px 20px;
  text-align: right;
  border-bottom: 1px solid #EBE8E0;
  color: #2C2424;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
  vertical-align: middle;
}

.elementor-widget-spicycat_shareholding_table .cap-table td:first-child,
.elementor-widget-spicycat_shareholding_table .cap-table td.col-no,
.elementor-widget-spicycat_shareholding_table .cap-table td.col-name {
  text-align: left;
  font-weight: 500;
  color: #2C2424;
}

.elementor-widget-spicycat_shareholding_table .cap-table th.col-no,
.elementor-widget-spicycat_shareholding_table .cap-table td.col-no {
  width: 45px;
}

.elementor-widget-spicycat_shareholding_table .cap-table th.col-shares,
.elementor-widget-spicycat_shareholding_table .cap-table td.col-shares {
  width: 120px;
}

.elementor-widget-spicycat_shareholding_table .cap-table th.col-prop,
.elementor-widget-spicycat_shareholding_table .cap-table td.col-prop {
  width: 130px;
}

/* Alternating Rows */
.elementor-widget-spicycat_shareholding_table .cap-table tbody tr:nth-child(odd):not(.sub-row):not(.total-row) td {
  background-color: #FFFDF9;
}

.elementor-widget-spicycat_shareholding_table .cap-table tbody tr:nth-child(even):not(.sub-row):not(.total-row) td {
  background-color: #FFFFFF;
}

.elementor-widget-spicycat_shareholding_table .cap-table tbody tr:hover:not(.total-row) td {
  background-color: rgba(212, 178, 111, 0.08);
}

.elementor-widget-spicycat_shareholding_table .cap-table tr:last-child td {
  border-bottom: none;
}

/* Sub-Row (Note / Bullet) */
.elementor-widget-spicycat_shareholding_table .cap-table tr.sub-row td {
  background-color: #FFFFFF !important;
  font-style: italic;
  color: #7A6F6F;
  font-size: 0.8rem;
  border-top: none;
  font-weight: 400;
}

/* Total Row */
.elementor-widget-spicycat_shareholding_table .cap-table tr.total-row td {
  background: #6E0D13 !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  border-bottom: none !important;
}

/* Percentage Bar Visual */
.elementor-widget-spicycat_shareholding_table .bar-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 5px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.elementor-widget-spicycat_shareholding_table .bar-visual {
  height: 6px;
  background-color: #d32f2f;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
}

/* Responsive Breakpoints matching mockup */
@media (max-width: 1024px) {
  .elementor-widget-spicycat_shareholding_table .cap-table-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .elementor-widget-spicycat_shareholding_table .cap-table-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table th {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table tr.sub-row td {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .elementor-widget-spicycat_shareholding_table .table-scroll-wrapper {
    overflow-x: hidden;
    width: 100%;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table {
    table-layout: fixed !important;
    width: 100% !important;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table th,
  .elementor-widget-spicycat_shareholding_table .cap-table td {
    padding: 8px 5px !important;
    font-size: 0.74rem !important;
    line-height: 1.35;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table th.col-no,
  .elementor-widget-spicycat_shareholding_table .cap-table td.col-no {
    width: 24px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    text-align: center !important;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table th.col-name,
  .elementor-widget-spicycat_shareholding_table .cap-table td.col-name {
    width: auto !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table th.col-shares,
  .elementor-widget-spicycat_shareholding_table .cap-table td.col-shares {
    width: 68px !important;
    white-space: nowrap;
    text-align: right !important;
  }
  .elementor-widget-spicycat_shareholding_table .cap-table th.col-prop,
  .elementor-widget-spicycat_shareholding_table .cap-table td.col-prop {
    width: 68px !important;
    white-space: nowrap;
    text-align: right !important;
  }
  .elementor-widget-spicycat_shareholding_table .bar-container {
    flex-direction: column !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 3px !important;
  }
  .elementor-widget-spicycat_shareholding_table .bar-visual {
    max-width: 35px !important;
  }
}

/* ==============================================================
   Financial Performance Widgets (Charts, Why-Box, Data-Table)
   ============================================================== */

/* --- 1. Financial Charts Widget --- */
.elementor-widget-spicycat_financial_charts .charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 0;
  align-items: stretch;
}

.elementor-widget-spicycat_financial_charts .chart-box {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #EAE0D5;
  border-radius: 12px;
  padding: 35px 30px 25px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  font-family: 'Prompt', 'Inter', sans-serif;
}

.elementor-widget-spicycat_financial_charts .chart-box:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.elementor-widget-spicycat_financial_charts .chart-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6E0D13;
  margin-bottom: 4px;
  line-height: 1.3;
}

.elementor-widget-spicycat_financial_charts .chart-subtitle {
  font-size: 0.85rem;
  color: #7A6F6F;
  margin-bottom: 15px;
  font-weight: 400;
}

.elementor-widget-spicycat_financial_charts .chart-container {
  flex-grow: 1;
  min-height: 220px;
  margin: 0;
}

.elementor-widget-spicycat_financial_charts .chart-footer {
  font-size: 0.82rem;
  color: #7A6F6F;
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #EAE0D5;
  font-weight: 500;
}

/* --- 2. Why-Box Widget (Mockup-Exact CSS) --- */
.elementor-widget-spicycat_why_box .why-box {
  background: var(--ir-bg-card, #FFFFFF);
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: var(--ir-radius, 8px);
  padding: 40px 30px 30px;
  position: relative;
  box-shadow: var(--ir-shadow, 0 4px 20px rgba(0, 0, 0, 0.04));
  height: 100%;
  box-sizing: border-box;
  font-family: 'Prompt', 'Inter', sans-serif;
}

.elementor-widget-spicycat_why_box .why-tag {
  position: absolute;
  top: -15px;
  left: 30px;
  background: var(--ir-text-muted, #7A6F6F);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  display: inline-block;
  z-index: 2;
}

.elementor-widget-spicycat_why_box .why-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ir-maroon, #6E0D13);
  margin-bottom: 25px;
  margin-top: 0;
  line-height: 1.4;
}

.elementor-widget-spicycat_why_box .why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elementor-widget-spicycat_why_box .why-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ir-text-dark, #333333);
}

.elementor-widget-spicycat_why_box .why-list li:last-child {
  margin-bottom: 0;
}

.elementor-widget-spicycat_why_box .why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ir-red, #d32f2f);
}

/* --- 3. Data-Table-Box Widget (Mockup-Exact CSS) --- */
.elementor-widget-spicycat_data_table_box .data-table-box {
  background: var(--ir-bg-card, #FFFFFF);
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: var(--ir-radius, 8px);
  padding: 40px 30px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  box-shadow: var(--ir-shadow, 0 4px 20px rgba(0, 0, 0, 0.04));
  margin-bottom: 0;
  font-family: 'Prompt', 'Inter', sans-serif;
}

.elementor-widget-spicycat_data_table_box .data-table-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ir-maroon, #6E0D13);
  margin-top: 0;
  margin-bottom: 20px;
}

.elementor-widget-spicycat_data_table_box .table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 15px;
}

.elementor-widget-spicycat_data_table_box .data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
  min-width: 480px;
}

.elementor-widget-spicycat_data_table_box .data-table thead th {
  background: var(--ir-maroon, #6E0D13);
  color: white;
  padding: 16px 20px;
  text-align: right;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 1px solid var(--ir-gold, #D4B26F);
}

.elementor-widget-spicycat_data_table_box .data-table thead th:first-child {
  text-align: left;
}

.elementor-widget-spicycat_data_table_box .data-table tbody td {
  padding: 14px 20px;
  text-align: right;
  border-bottom: 1px solid var(--ir-border-light, #F6F3EE);
  color: var(--ir-text, #2C2424);
  font-size: 0.85rem;
  transition: background-color var(--ir-transition, 0.25s ease);
}

.elementor-widget-spicycat_data_table_box .data-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ir-text, #2C2424);
}

.elementor-widget-spicycat_data_table_box .data-table tbody tr:hover td {
  background-color: rgba(212, 178, 111, 0.08);
}

.elementor-widget-spicycat_data_table_box .data-table tr:last-child td {
  border-bottom: none;
}

.elementor-widget-spicycat_data_table_box .data-table tbody tr.row-muted td {
  color: #888888;
}

.elementor-widget-spicycat_data_table_box .data-table tbody tr.row-highlight td,
.elementor-widget-spicycat_data_table_box .data-table tbody tr.row-highlight td:first-child {
  font-weight: 700 !important;
}

.elementor-widget-spicycat_data_table_box .data-table tbody tr.row-highlight td:first-child {
  color: var(--ir-maroon, #6E0D13);
}

.elementor-widget-spicycat_data_table_box .table-note {
  margin-top: auto;
  background: var(--ir-bg-muted, #FCFAF5);
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: var(--ir-radius-sm, 6px);
  padding: 15px 20px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--ir-text-light, #666666);
}

.elementor-widget-spicycat_data_table_box .table-note strong {
  color: var(--ir-red, #d32f2f);
}

/* --- Responsive Tablet (<= 1024px) --- */
@media (max-width: 1024px) {
  .elementor-widget-spicycat_financial_charts .charts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .elementor-widget-spicycat_financial_charts .chart-box,
  .elementor-widget-spicycat_why_box .why-box,
  .elementor-widget-spicycat_data_table_box .data-table-box {
    padding: 28px 20px 22px !important;
  }
  
  .elementor-widget-spicycat_why_box .why-tag {
    left: 20px;
  }
  
  .elementor-widget-spicycat_why_box .why-title,
  .elementor-widget-spicycat_data_table_box .data-table-title,
  .elementor-widget-spicycat_financial_charts .chart-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
  
  .elementor-widget-spicycat_data_table_box .data-table {
    font-size: 0.85rem;
    min-width: 420px;
  }
  
  .elementor-widget-spicycat_data_table_box .data-table thead th,
  .elementor-widget-spicycat_data_table_box .data-table tbody td {
    padding: 10px 7px !important;
  }
}

/* --- Responsive Mobile & Zero Scroll X (<= 576px) --- */
@media (max-width: 576px) {
  .elementor-widget-spicycat_financial_charts .chart-box,
  .elementor-widget-spicycat_why_box .why-box,
  .elementor-widget-spicycat_data_table_box .data-table-box {
    padding: 25px 15px 18px !important;
  }

  .elementor-widget-spicycat_why_box .why-tag {
    left: 15px;
    top: -13px;
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .elementor-widget-spicycat_why_box .why-list li {
    font-size: 0.88rem;
    padding-left: 20px;
    margin-bottom: 12px;
  }

  /* Force table layout fixed on mobile to entirely prevent scroll X */
  .elementor-widget-spicycat_data_table_box .data-table {
    min-width: 100% !important;
    table-layout: fixed !important;
    width: 100% !important;
    font-size: 0.78rem !important;
  }

  .elementor-widget-spicycat_data_table_box .data-table thead th,
  .elementor-widget-spicycat_data_table_box .data-table tbody td {
    padding: 8px 3px !important;
    word-wrap: break-word;
  }

  .elementor-widget-spicycat_data_table_box .data-table thead th:first-child,
  .elementor-widget-spicycat_data_table_box .data-table tbody td:first-child {
    width: 38% !important;
    padding-left: 4px !important;
    line-height: 1.3;
  }

  .elementor-widget-spicycat_data_table_box .data-table thead th:not(:first-child),
  .elementor-widget-spicycat_data_table_box .data-table tbody td:not(:first-child) {
    width: 15.5% !important;
    text-align: right !important;
    padding-right: 3px !important;
  }
}

/* ============================================================
   VALUATION MODEL WIDGETS (Implied Box & Thesis Box)
   ============================================================ */

/* --- 1. Implied Valuation Box Widget --- */
.elementor-widget-spicycat_implied_box .implied-box {
  background: var(--ir-bg-card, #FFFFFF);
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: var(--ir-radius, 8px);
  padding: 30px;
  box-shadow: var(--ir-shadow, 0 4px 20px rgba(0, 0, 0, 0.04));
  min-width: 0;
  overflow: hidden;
  font-family: 'Prompt', 'Inter', sans-serif;
  box-sizing: border-box;
  height: 100%;
}

.elementor-widget-spicycat_implied_box .implied-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ir-maroon, #6E0D13);
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.4;
}

.elementor-widget-spicycat_implied_box .table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 15px;
}

.elementor-widget-spicycat_implied_box .implied-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 450px;
}

.elementor-widget-spicycat_implied_box .implied-table th {
  background: var(--ir-maroon, #6E0D13);
  color: white;
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 1px solid var(--ir-gold, #D4B26F);
}

.elementor-widget-spicycat_implied_box .implied-table th:first-child {
  border-radius: 8px 0 0 0;
}

.elementor-widget-spicycat_implied_box .implied-table th:last-child {
  border-radius: 0 8px 0 0;
}

.elementor-widget-spicycat_implied_box .implied-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--ir-border-light, #F6F3EE);
  color: var(--ir-text, #2C2424);
  font-size: 0.85rem;
  transition: background-color var(--ir-transition, 0.25s ease);
}

.elementor-widget-spicycat_implied_box .implied-table tbody tr:hover td {
  background-color: rgba(212, 178, 111, 0.08);
}

.elementor-widget-spicycat_implied_box .implied-table tr:last-child td {
  border-bottom: none;
}

.elementor-widget-spicycat_implied_box .implied-table td.cell-highlight {
  color: var(--ir-red, #d32f2f) !important;
  font-weight: 700;
}

.elementor-widget-spicycat_implied_box .implied-note {
  background: var(--ir-bg, #FDFBF7);
  padding: 12px 15px;
  border-radius: var(--ir-radius-sm, 6px);
  font-size: 0.8rem;
  color: var(--ir-text-light, #666666);
  text-align: center;
  border: 1px solid var(--ir-border, #EFEAE4);
  line-height: 1.5;
  margin-top: 20px;
}

.elementor-widget-spicycat_implied_box .implied-note strong {
  color: var(--ir-red, #d32f2f);
  font-weight: 600;
}

/* --- 2. Investment Thesis Box Widget --- */
.elementor-widget-spicycat_thesis_box .thesis-box {
  background: var(--ir-bg-muted, #FCFAF5);
  border: 2px solid var(--ir-gold, #D4B26F);
  border-radius: var(--ir-radius, 8px);
  padding: 40px 30px;
  box-shadow: var(--ir-shadow, 0 4px 20px rgba(0, 0, 0, 0.04));
  min-width: 0;
  overflow: hidden;
  font-family: 'Prompt', 'Inter', sans-serif;
  box-sizing: border-box;
  height: 100%;
}

.elementor-widget-spicycat_thesis_box .thesis-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  margin-top: 0;
  color: var(--ir-maroon, #6E0D13);
  line-height: 1.35;
}

.elementor-widget-spicycat_thesis_box .thesis-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elementor-widget-spicycat_thesis_box .thesis-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ir-text-dark, #333333);
  font-weight: 500;
}

.elementor-widget-spicycat_thesis_box .thesis-list li:last-child {
  margin-bottom: 0;
}

.elementor-widget-spicycat_thesis_box .thesis-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--ir-red, #d32f2f);
}

/* --- Responsive Tablet (<= 768px) --- */
@media (max-width: 768px) {
  .elementor-widget-spicycat_implied_box .implied-box {
    padding: 25px 20px !important;
  }
  .elementor-widget-spicycat_implied_box .implied-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .elementor-widget-spicycat_implied_box .implied-table th,
  .elementor-widget-spicycat_implied_box .implied-table td {
    padding: 12px 10px;
    font-size: 0.82rem;
  }
  .elementor-widget-spicycat_thesis_box .thesis-box {
    padding: 30px 20px !important;
  }
  .elementor-widget-spicycat_thesis_box .thesis-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

/* --- Responsive Mobile & Zero Scroll X (<= 576px) --- */
@media (max-width: 576px) {
  .elementor-widget-spicycat_implied_box .implied-box {
    padding: 22px 14px !important;
  }
  .elementor-widget-spicycat_implied_box .implied-title {
    font-size: 1.15rem;
    margin-bottom: 15px;
    text-align: center;
  }
  /* Force table layout fixed on mobile to entirely prevent scroll X */
  .elementor-widget-spicycat_implied_box .implied-table {
    min-width: 100% !important;
    table-layout: fixed !important;
    width: 100% !important;
    font-size: 0.76rem !important;
  }
  .elementor-widget-spicycat_implied_box .implied-table th,
  .elementor-widget-spicycat_implied_box .implied-table td {
    padding: 8px 3px !important;
    word-wrap: break-word;
    font-size: 0.76rem !important;
  }
  .elementor-widget-spicycat_implied_box .implied-note {
    font-size: 0.75rem;
    padding: 10px 12px;
    margin-top: 15px;
  }

  .elementor-widget-spicycat_thesis_box .thesis-box {
    padding: 25px 16px !important;
  }
  .elementor-widget-spicycat_thesis_box .thesis-title {
    font-size: 1.18rem;
    margin-bottom: 16px;
  }
  .elementor-widget-spicycat_thesis_box .thesis-list li {
    font-size: 0.88rem;
    padding-left: 20px;
    margin-bottom: 14px;
  }
  .elementor-widget-spicycat_thesis_box .thesis-list li::before {
    top: 7px;
    width: 8px;
    height: 8px;
  }
}

/* ==============================================================
   Spicy Cat Dividend Policy Widgets Styles (Version 1.1.3)
   ============================================================== */

/* --- 1, 3 & 4. FCF Table, Cash Walk Table & DPS Table --- */
.elementor-widget-spicycat_fcf_table .data-table-box,
.elementor-widget-spicycat_cash_walk_table .data-table-box,
.elementor-widget-spicycat_dps_table .data-table-box {
  background-color: #FFFFFF;
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-bottom: 15px;
}

.elementor-widget-spicycat_fcf_table .data-table,
.elementor-widget-spicycat_cash_walk_table .data-table,
.elementor-widget-spicycat_dps_table .data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: inherit;
}

.elementor-widget-spicycat_fcf_table .data-table th,
.elementor-widget-spicycat_cash_walk_table .data-table th,
.elementor-widget-spicycat_dps_table .data-table th {
  background-color: var(--ir-maroon, #6E0D13);
  color: #FFFFFF;
  border-bottom: 1px solid var(--ir-gold, #D4B26F);
  font-weight: 700;
  padding: 16px 20px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.elementor-widget-spicycat_fcf_table .data-table td,
.elementor-widget-spicycat_cash_walk_table .data-table td,
.elementor-widget-spicycat_dps_table .data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #F2EBE1;
  font-size: 0.9rem;
  color: #2C2424;
  transition: background-color 0.2s ease;
}

.elementor-widget-spicycat_fcf_table .data-table tbody tr:hover td,
.elementor-widget-spicycat_cash_walk_table .data-table tbody tr:hover td,
.elementor-widget-spicycat_dps_table .data-table tbody tr:hover td {
  background-color: #FFFDF9;
}

/* Row & Cell Highlights */
.elementor-widget-spicycat_fcf_table .data-table tr.highlight td,
.elementor-widget-spicycat_cash_walk_table .data-table tr.highlight td,
.elementor-widget-spicycat_dps_table .data-table tr.highlight td {
  background-color: var(--ir-bg-highlight, #F4E8D0) !important;
  font-weight: 700;
  color: #2C2424;
  border-bottom: 1px solid #EBDDBD;
}

.elementor-widget-spicycat_fcf_table .data-table tr.dark-highlight td,
.elementor-widget-spicycat_cash_walk_table .data-table tr.dark-highlight td,
.elementor-widget-spicycat_dps_table .data-table tr.dark-highlight td {
  background: var(--ir-maroon, #6E0D13) !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  border-bottom: none !important;
}

.elementor-widget-spicycat_fcf_table .data-table td.gold-text,
.elementor-widget-spicycat_cash_walk_table .data-table td.gold-text,
.elementor-widget-spicycat_dps_table .data-table td.gold-text {
  color: var(--ir-gold-muted, #995C14) !important;
  font-weight: 600;
}

.elementor-widget-spicycat_fcf_table .data-table td.red-text,
.elementor-widget-spicycat_cash_walk_table .data-table td.red-text,
.elementor-widget-spicycat_dps_table .data-table td.red-text {
  color: var(--ir-red, #d32f2f) !important;
  font-weight: 600;
}

/* Table Footer Notes */
.elementor-widget-spicycat_fcf_table .table-note,
.elementor-widget-spicycat_cash_walk_table .table-note,
.elementor-widget-spicycat_dps_table .table-note {
  background-color: var(--ir-bg-muted, #FCFAF5);
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: 6px;
  color: var(--ir-text-muted, #666666);
  padding: 15px 20px;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 45px;
}

.elementor-widget-spicycat_fcf_table .table-note .note-highlight,
.elementor-widget-spicycat_cash_walk_table .table-note .note-highlight,
.elementor-widget-spicycat_dps_table .table-note .note-highlight {
  color: var(--ir-maroon-light, #8B251D);
  font-weight: 700;
}

/* --- 2. Dividend Charts Widget --- */
.elementor-widget-spicycat_dividend_charts .dividend-charts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 45px;
}

.elementor-widget-spicycat_dividend_charts .chart-box {
  background: #FFFFFF;
  border: 1px solid var(--ir-border, #EFEAE4);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.elementor-widget-spicycat_dividend_charts .chart-box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.elementor-widget-spicycat_dividend_charts .chart-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ir-maroon, #6E0D13);
  margin-bottom: 5px;
  text-align: center;
}

.elementor-widget-spicycat_dividend_charts .chart-subtitle {
  font-size: 0.85rem;
  color: var(--ir-text-muted, #7A6F6F);
  margin-bottom: 20px;
  text-align: center;
}

.elementor-widget-spicycat_dividend_charts .spicy-apex-chart {
  min-height: 250px;
  width: 100%;
  margin: 10px 0;
}

.elementor-widget-spicycat_dividend_charts .chart-footer {
  margin-top: auto;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ir-maroon, #6E0D13);
  padding-top: 18px;
  border-top: 1px dashed #F2EBE1;
}

/* ==============================================================
   Dividend Widgets Responsive Styling (Tablet & Mobile)
   ============================================================== */

/* --- Tablet Breakpoint (<= 1024px) --- */
@media (max-width: 1024px) {
  .elementor-widget-spicycat_dividend_charts .dividend-charts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .elementor-widget-spicycat_dividend_charts .chart-box {
    padding: 25px 20px;
  }
}

/* --- Tablet Medium & Small (<= 768px) --- */
@media (max-width: 768px) {
  .elementor-widget-spicycat_fcf_table .data-table th,
  .elementor-widget-spicycat_fcf_table .data-table td,
  .elementor-widget-spicycat_cash_walk_table .data-table th,
  .elementor-widget-spicycat_cash_walk_table .data-table td,
  .elementor-widget-spicycat_dps_table .data-table th,
  .elementor-widget-spicycat_dps_table .data-table td {
    padding: 12px 10px;
    font-size: 0.84rem;
  }
  .elementor-widget-spicycat_fcf_table .table-note,
  .elementor-widget-spicycat_cash_walk_table .table-note,
  .elementor-widget-spicycat_dps_table .table-note {
    padding: 12px 16px;
    font-size: 0.82rem;
    margin-bottom: 35px;
  }
}

/* --- Mobile Breakpoint & Zero Scroll X Support (<= 576px) --- */
@media (max-width: 576px) {
  /* Enforce fixed table layout on mobile to totally eliminate scroll X */
  .elementor-widget-spicycat_fcf_table .data-table,
  .elementor-widget-spicycat_cash_walk_table .data-table,
  .elementor-widget-spicycat_dps_table .data-table {
    min-width: 100% !important;
    width: 100% !important;
    table-layout: fixed !important;
  }

  /* 4-Column Tables: Proportional cell scaling */
  .elementor-widget-spicycat_fcf_table .data-table th:nth-child(1),
  .elementor-widget-spicycat_fcf_table .data-table td:nth-child(1),
  .elementor-widget-spicycat_cash_walk_table .data-table th:nth-child(1),
  .elementor-widget-spicycat_cash_walk_table .data-table td:nth-child(1) {
    width: 43% !important;
  }
  .elementor-widget-spicycat_fcf_table .data-table th:nth-child(n+2),
  .elementor-widget-spicycat_fcf_table .data-table td:nth-child(n+2),
  .elementor-widget-spicycat_cash_walk_table .data-table th:nth-child(n+2),
  .elementor-widget-spicycat_cash_walk_table .data-table td:nth-child(n+2) {
    width: 19% !important;
    text-align: center;
  }
  .elementor-widget-spicycat_fcf_table .data-table th,
  .elementor-widget-spicycat_fcf_table .data-table td,
  .elementor-widget-spicycat_cash_walk_table .data-table th,
  .elementor-widget-spicycat_cash_walk_table .data-table td {
    padding: 8px 4px !important;
    font-size: 0.74rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal !important;
    line-height: 1.3;
  }

  /* 5-Column Table (DPS): Proportional cell scaling for dense columns */
  .elementor-widget-spicycat_dps_table .data-table th:nth-child(1),
  .elementor-widget-spicycat_dps_table .data-table td:nth-child(1) {
    width: 36% !important;
  }
  .elementor-widget-spicycat_dps_table .data-table th:nth-child(n+2),
  .elementor-widget-spicycat_dps_table .data-table td:nth-child(n+2) {
    width: 16% !important;
    text-align: center;
  }
  .elementor-widget-spicycat_dps_table .data-table th,
  .elementor-widget-spicycat_dps_table .data-table td {
    padding: 7px 2px !important;
    font-size: 0.70rem !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal !important;
    line-height: 1.25;
  }

  .elementor-widget-spicycat_fcf_table .table-note,
  .elementor-widget-spicycat_cash_walk_table .table-note,
  .elementor-widget-spicycat_dps_table .table-note {
    font-size: 0.76rem;
    padding: 12px 14px;
    margin-bottom: 30px;
  }

  .elementor-widget-spicycat_dividend_charts .chart-box {
    padding: 20px 15px;
  }
  .elementor-widget-spicycat_dividend_charts .chart-title {
    font-size: 1.15rem;
  }
  .elementor-widget-spicycat_dividend_charts .chart-subtitle {
    font-size: 0.78rem;
    margin-bottom: 15px;
  }
  .elementor-widget-spicycat_dividend_charts .chart-footer {
    font-size: 0.85rem;
    padding-top: 14px;
  }
}

