/* Product Single Page Styles */

.breadcrumbs {
	background: #f5f5f5;
	padding: 15px 20px;
	border-radius: 5px;
	margin-bottom: 25px;
	font-size: 0.9em;
}

.breadcrumbs a {
	color: #666;
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: #fd8d0d;
}

.breadcrumbs strong {
	color: #A14159;
}

/* Product Single Layout */
.product-single {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-main {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid #f5f5f5;
}

.product-gallery {
	flex: 1;
	max-width: 500px;
}

.product-image-main {
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	border: 2px solid #eee;
}

.product-placeholder-large {
	font-size: 120px;
	color: #ddd;
	line-height: 1;
}

.product-summary {
	flex: 1;
}

.product-category-badge {
	display: inline-block;
	background: #fd8d0d;
	color: #fff;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.product-single-title {
	font-size: 2.2em;
	color: #A14159;
	margin: 0 0 15px 0;
	line-height: 1.3;
	font-weight: bold;
}

.product-rating {
	margin: 15px 0 20px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.stars {
	color: #ffa500;
	font-size: 1.3em;
	letter-spacing: 2px;
}

.rating-text {
	color: #666;
	font-size: 0.95em;
}

.product-price-box {
	background: linear-gradient(135deg, #fff3e0 0%, #ffe8cc 100%);
	padding: 20px 25px;
	border-radius: 8px;
	margin: 25px 0;
	border: 2px solid #fd8d0d;
}

.price-label {
	display: block;
	color: #666;
	font-size: 0.95em;
	margin-bottom: 5px;
}

.price-value {
	font-size: 2.5em;
	color: #A14159;
	font-weight: bold;
	line-height: 1;
}

.product-features-quick {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 25px 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95em;
	color: #333;
}

.feature-item .icon {
	font-size: 1.3em;
	color: #fd8d0d;
}

.product-actions {
	margin: 30px 0;
}

.btn-buy-now {
	display: block;
	background: linear-gradient(135deg, #fd8d0d 0%, #ff9f3a 100%);
	color: #fff;
	text-align: center;
	padding: 18px 40px;
	border-radius: 8px;
	font-size: 1.3em;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(253, 141, 13, 0.3);
	border: none;
	cursor: pointer;
}

.btn-buy-now:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(253, 141, 13, 0.4);
}

.secure-note {
	text-align: center;
	margin: 15px 0 0 0;
	color: #666;
	font-size: 0.9em;
}

.trust-badges {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #eee;
}

.trust-badge {
	background: #f5f5f5;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
}

.trust-badge strong {
	display: block;
	color: #A14159;
	margin-bottom: 5px;
	font-size: 0.95em;
}

.trust-badge p {
	margin: 0;
	color: #666;
	font-size: 0.85em;
}

/* Tabs */
.product-description-full {
	margin-top: 40px;
}

.tabs-wrapper {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid #eee;
}

.tabs-nav {
	display: flex;
	background: #f5f5f5;
	border-bottom: 2px solid #eee;
	overflow-x: auto;
}

.tab-btn {
	flex: 1;
	padding: 15px 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1em;
	font-weight: bold;
	color: #666;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
	white-space: nowrap;
}

.tab-btn:hover {
	background: #fff;
	color: #fd8d0d;
}

.tab-btn.active {
	background: #fff;
	color: #A14159;
	border-bottom-color: #fd8d0d;
}

.tab-content {
	display: none;
	padding: 30px;
}

.tab-content.active {
	display: block;
}

.content-wrapper {
	max-width: 900px;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
	color: #A14159;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}

.content-wrapper h1 {
	font-size: 2em;
	border-bottom: 3px solid #fd8d0d;
	padding-bottom: 10px;
}

.content-wrapper h2 {
	font-size: 1.6em;
}

.content-wrapper h3 {
	font-size: 1.3em;
}

.content-wrapper p {
	line-height: 1.8;
	margin: 1em 0;
	color: #333;
}

.content-wrapper ul,
.content-wrapper ol {
	margin: 1em 0;
	padding-left: 2em;
	line-height: 1.8;
}

.content-wrapper li {
	margin: 0.5em 0;
}

.content-wrapper table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5em 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-wrapper table th {
	background: #fd8d0d;
	color: #fff;
	padding: 12px;
	text-align: left;
	font-weight: bold;
}

.content-wrapper table td {
	padding: 12px;
	border-bottom: 1px solid #eee;
}

.content-wrapper table tr:hover {
	background: #f5f5f5;
}

.content-wrapper dl {
	margin: 1.5em 0;
}

.content-wrapper dt {
	font-weight: bold;
	color: #A14159;
	margin-top: 1em;
	font-size: 1.1em;
}

.content-wrapper dd {
	margin: 0.5em 0 1em 1.5em;
	color: #666;
	line-height: 1.6;
}

.content-wrapper section {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	margin: 1.5em 0;
	border-left: 4px solid #fd8d0d;
}

.content-wrapper aside {
	background: #fff3e0;
	padding: 20px;
	border-radius: 8px;
	margin: 1.5em 0;
	border: 2px solid #ffd699;
}

.content-wrapper details {
	background: #f5f5f5;
	padding: 15px;
	border-radius: 8px;
	margin: 1em 0;
}

.content-wrapper summary {
	font-weight: bold;
	color: #A14159;
	cursor: pointer;
	padding: 10px;
}

.content-wrapper summary:hover {
	color: #fd8d0d;
}

/* Reviews */
.review-item {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 15px;
	border-left: 4px solid #fd8d0d;
}

.review-rating {
	color: #ffa500;
	font-size: 1.2em;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.review-text {
	color: #333;
	line-height: 1.6;
	margin: 10px 0;
	font-style: italic;
}

.review-author {
	color: #666;
	font-size: 0.9em;
	margin-top: 10px;
	font-weight: bold;
}

/* Sidebar for product page */
.security-badges p {
	margin: 12px 0;
	padding: 10px;
	background: #f5f5f5;
	border-radius: 5px;
	font-size: 0.9em;
}

/* Product placeholder styling */
.product-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4em;
	color: #ddd;
	background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

/* Responsive */
@media (max-width: 968px) {
	.product-main {
		flex-direction: column;
	}

	.product-gallery {
		max-width: 100%;
	}

	.tabs-nav {
		flex-wrap: wrap;
	}

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

@media (max-width: 768px) {
	.product-single {
		padding: 20px;
	}

	.product-single-title {
		font-size: 1.6em;
	}

	.price-value {
		font-size: 2em;
	}

	.product-features-quick {
		grid-template-columns: 1fr;
	}

	.tab-content {
		padding: 20px;
	}

	.content-wrapper {
		padding: 0;
	}
}
