/* E-E-A-T Trust & Authority Styles */

/* Company Info Block - Enhanced */
.company-trust-block {
	background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
	border-left: 5px solid #fd8d0d;
	padding: 25px;
	margin: 30px 0;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(253, 141, 13, 0.1);
}

.company-trust-block h3 {
	color: #A14159;
	margin: 0 0 15px 0;
	font-size: 1.4em;
	display: flex;
	align-items: center;
	gap: 10px;
}

.company-trust-block h3:before {
	content: "🏛️";
	font-size: 1.2em;
}

.company-trust-block p {
	line-height: 1.8;
	margin: 12px 0;
	color: #333;
}

.company-trust-block strong {
	color: #fd8d0d;
	font-weight: bold;
}

.trust-badges-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin: 20px 0;
}

.trust-badge-item {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 2px solid #f0f0f0;
	transition: all 0.3s ease;
}

.trust-badge-item:hover {
	border-color: #fd8d0d;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trust-badge-item .icon {
	font-size: 2.5em;
	margin-bottom: 10px;
	display: block;
}

.trust-badge-item h4 {
	color: #A14159;
	margin: 10px 0 5px 0;
	font-size: 1em;
}

.trust-badge-item p {
	color: #666;
	font-size: 0.9em;
	margin: 5px 0 0 0;
}

/* Credentials Block */
.credentials-block {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.credentials-block ul {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.credentials-block li {
	padding: 10px 0;
	padding-left: 30px;
	position: relative;
	border-bottom: 1px solid #eee;
}

.credentials-block li:last-child {
	border-bottom: none;
}

.credentials-block li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #fd8d0d;
	font-weight: bold;
	font-size: 1.2em;
}

/* Team/Authority Section */
.authority-section {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	margin: 30px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.authority-section h3 {
	color: #A14159;
	border-bottom: 3px solid #fd8d0d;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.team-member {
	display: flex;
	gap: 20px;
	margin: 20px 0;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
}

.team-member-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #fd8d0d, #A14159);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: #fff;
	flex-shrink: 0;
}

.team-member-info h4 {
	color: #A14159;
	margin: 0 0 5px 0;
}

.team-member-info .role {
	color: #fd8d0d;
	font-size: 0.9em;
	font-weight: bold;
	margin-bottom: 10px;
}

.team-member-info p {
	color: #666;
	line-height: 1.6;
	margin: 5px 0;
}

/* Certifications Display */
.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.cert-badge {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 2px solid #f0f0f0;
	transition: all 0.3s ease;
}

.cert-badge:hover {
	border-color: #fd8d0d;
	box-shadow: 0 4px 12px rgba(253, 141, 13, 0.2);
}

.cert-badge .cert-icon {
	font-size: 3em;
	margin-bottom: 10px;
}

.cert-badge .cert-name {
	font-size: 0.85em;
	color: #333;
	font-weight: bold;
}

/* Contact Trust Block */
.contact-trust {
	background: linear-gradient(135deg, #A14159 0%, #fd8d0d 100%);
	color: #fff;
	padding: 30px;
	border-radius: 8px;
	margin: 30px 0;
}

.contact-trust h3 {
	color: #fff;
	margin: 0 0 20px 0;
}

.contact-trust-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 15px 0;
	padding: 15px;
	background: rgba(255,255,255,0.1);
	border-radius: 5px;
}

.contact-trust-item .icon {
	font-size: 1.5em;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-trust-item .info strong {
	display: block;
	margin-bottom: 3px;
}

/* Enhanced Product Image - More Trustworthy */
.product-image-main {
	background: #fff;
	border: 3px solid #f0f0f0;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	position: relative;
	overflow: hidden;
}

.product-image-main:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #fd8d0d, #A14159);
}

.product-image-main img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	filter: contrast(1.05) saturate(1.1);
	transition: all 0.3s ease;
}

.product-image-main img:hover {
	transform: scale(1.03);
}

/* Verified Badge on Image */
.product-verified-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #4CAF50;
	color: #fff;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: bold;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	gap: 5px;
}

.product-verified-badge:before {
	content: "✓";
	font-size: 1.2em;
}

/* Guarantee Seal */
.guarantee-seal {
	background: #fff;
	border: 3px solid #fd8d0d;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 4px 12px rgba(253, 141, 13, 0.3);
}

.guarantee-seal .number {
	font-size: 2em;
	font-weight: bold;
	color: #fd8d0d;
	line-height: 1;
}

.guarantee-seal .text {
	font-size: 0.7em;
	color: #333;
	font-weight: bold;
	text-align: center;
}

/* Trust Timeline */
.trust-timeline {
	padding: 20px 0;
	margin: 20px 0;
}

.timeline-item {
	display: flex;
	gap: 20px;
	margin: 20px 0;
	position: relative;
	padding-left: 40px;
}

.timeline-item:before {
	content: '';
	position: absolute;
	left: 10px;
	top: 10px;
	bottom: -20px;
	width: 2px;
	background: #fd8d0d;
}

.timeline-item:last-child:before {
	display: none;
}

.timeline-dot {
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: #fd8d0d;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 0 0 3px #fd8d0d;
}

.timeline-content {
	flex: 1;
	background: #f9f9f9;
	padding: 15px;
	border-radius: 8px;
}

.timeline-year {
	font-weight: bold;
	color: #fd8d0d;
	font-size: 1.1em;
	margin-bottom: 5px;
}

/* Sidebar Trust Widget */
.widget.trust-widget {
	background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
	border: 2px solid #fd8d0d;
}

.widget.trust-widget h4 {
	background: linear-gradient(135deg, #fd8d0d, #A14159);
	color: #fff;
	margin: -20px -20px 15px -20px;
	padding: 15px 20px;
	border-radius: 6px 6px 0 0;
}

/* Enhanced Footer Styles - Override default footer */
#footer {
	background: transparent !important;
	padding: 0 !important;
	text-align: left !important;
	color: inherit !important;
	border-top: none !important;
}

.footer-trust-section {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
	color: #fff !important;
	padding: 40px 20px 20px !important;
	margin-top: 40px !important;
	text-align: left !important;
}

.footer-organization {
	background: rgba(255, 255, 255, 0.1) !important;
	padding: 25px !important;
	border-radius: 8px !important;
	margin-bottom: 30px !important;
	border-left: 5px solid #fd8d0d !important;
}

.footer-organization h4 {
	color: #fd8d0d !important;
	font-size: 1.4em !important;
	margin: 0 0 15px 0 !important;
	font-weight: bold !important;
	text-align: left !important;
}

.footer-organization p {
	margin: 8px 0 !important;
	line-height: 1.6 !important;
	font-size: 0.95em !important;
	color: #fff !important;
	text-align: left !important;
}

.footer-organization strong {
	color: #fd8d0d !important;
	font-weight: bold !important;
}

.footer-contact-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
	gap: 20px !important;
	margin: 30px 0 !important;
}

.footer-contact-item {
	background: rgba(255, 255, 255, 0.05) !important;
	padding: 20px !important;
	border-radius: 8px !important;
	display: flex !important;
	align-items: flex-start !important;
	gap: 15px !important;
	transition: all 0.3s ease !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-contact-item:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: #fd8d0d !important;
	transform: translateY(-2px) !important;
}

.footer-contact-item .icon {
	font-size: 1.8em !important;
	width: 50px !important;
	height: 50px !important;
	background: rgba(253, 141, 13, 0.2) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
}

.footer-contact-item .info {
	flex: 1 !important;
	text-align: left !important;
}

.footer-contact-item .info strong {
	display: block !important;
	margin-bottom: 5px !important;
	color: #fd8d0d !important;
	font-size: 0.9em !important;
	text-align: left !important;
}

.footer-contact-item .info a {
	color: #fff !important;
	text-decoration: none !important;
	transition: color 0.3s ease !important;
}

.footer-contact-item .info a:hover {
	color: #fd8d0d !important;
	text-decoration: underline !important;
}

.footer-contact-item .info span {
	font-size: 0.95em !important;
	line-height: 1.5 !important;
	color: #fff !important;
	display: block !important;
}

.footer-legal {
	background: rgba(0, 0, 0, 0.2) !important;
	padding: 20px !important;
	border-radius: 8px !important;
	margin: 30px 0 20px !important;
	text-align: center !important;
}

.footer-legal p {
	margin: 8px 0 !important;
	font-size: 0.9em !important;
	line-height: 1.6 !important;
	color: #ecf0f1 !important;
	text-align: center !important;
}

.footer-links {
	text-align: center !important;
	padding: 20px 0 10px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
	font-size: 0.95em !important;
}

.footer-links a {
	color: #fff !important;
	text-decoration: none !important;
	margin: 0 10px !important;
	transition: color 0.3s ease !important;
}

.footer-links a:hover {
	color: #fd8d0d !important;
	text-decoration: underline !important;
}

/* Related Products Section */
.related-products-section {
	background: #f8f9fa !important;
	padding: 40px 20px !important;
	margin: 40px 0 !important;
	border-radius: 8px !important;
}

.related-products-section h3 {
	color: #A14159 !important;
	font-size: 1.8em !important;
	margin: 0 0 25px 0 !important;
	text-align: center !important;
	font-weight: bold !important;
}

.related-products-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
	gap: 20px !important;
	margin: 0 !important;
}

.related-product-card {
	background: #fff !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 8px !important;
	padding: 15px !important;
	text-align: center !important;
	transition: all 0.3s ease !important;
	text-decoration: none !important;
	display: block !important;
}

.related-product-card:hover {
	border-color: #fd8d0d !important;
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 20px rgba(253, 141, 13, 0.2) !important;
}

.related-product-card img {
	max-width: 100% !important;
	height: 120px !important;
	object-fit: contain !important;
	margin-bottom: 10px !important;
	border-radius: 4px !important;
}

.related-product-card .product-name {
	font-size: 1em !important;
	font-weight: bold !important;
	color: #333 !important;
	margin: 10px 0 5px 0 !important;
	display: block !important;
}

.related-product-card .product-category {
	font-size: 0.85em !important;
	color: #fd8d0d !important;
	margin-bottom: 8px !important;
	display: block !important;
}

.related-product-card .product-price {
	font-size: 1.1em !important;
	font-weight: bold !important;
	color: #A14159 !important;
	margin-top: 10px !important;
	display: block !important;
}

/* Responsive */
@media (max-width: 768px) {
	.trust-badges-grid {
		grid-template-columns: 1fr;
	}

	.team-member {
		flex-direction: column;
		text-align: center;
	}

	.certifications-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-contact-grid {
		grid-template-columns: 1fr;
	}

	.footer-organization {
		padding: 20px;
	}

	.footer-trust-section {
		padding: 30px 15px 15px;
	}

	.related-products-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
