/*
Theme Name: Resham Saga Child Theme
Template: kadence
Description: Custom child theme for Resham Saga WooCommerce store with enhanced product page design
Version: 1.0.1
Author: Resham Development Team
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: resham-child
Domain Path: /languages
*/

/* Custom Resham Theme Variables */
:root {
	--resham-primary-color: #C97899;
	--resham-primary-dark: #b8647f;
	--resham-bg-light: #f9f7f4;
	--resham-text-dark: #333333;
	--resham-text-light: #666666;
	--resham-border-color: #e0e0e0;
	--resham-success-color: #27ae60;
	--resham-error-color: #e74c3c;
}

/* Base Typography */
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: var(--resham-text-dark);
	line-height: 1.6;
}

/* Ensure product pages look good */
.woocommerce .entry-content {
	margin: 0;
}

.woocommerce-breadcrumb {
	margin: 20px 0;
	font-size: 13px;
	color: var(--resham-text-light);
}

/* Customize WooCommerce messages */
.woocommerce-message,
.woocommerce-info {
	background: #f5f5f5;
	border-left: 4px solid var(--resham-primary-color);
	padding: 15px 20px;
	margin-bottom: 20px;
	border-radius: 0;
}

.woocommerce-error {
	background: #fef5f5;
	border-left-color: var(--resham-error-color);
}

/* Product reviews section */
#reviews {
	margin-top: 60px;
}

#reviews h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--resham-text-dark);
	margin-bottom: 30px;
}

/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: #999;
}
