/* Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--arynaz-font-family);
	background-color: var(--arynaz-bg);
	color: var(--arynaz-text-main);
	line-height: 1.6;
	direction: rtl;
	text-align: right;
	font-feature-settings: "tnum" 1, "lnum" 1; /* Tabular numbers for prices */
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: var(--arynaz-space-4);
	color: var(--arynaz-text-main);
	font-weight: 700;
	line-height: 1.3;
}

p {
	margin-top: 0;
	margin-bottom: var(--arynaz-space-4);
}

/* Container */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--arynaz-space-4);
}

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--arynaz-text-muted); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: var(--arynaz-radius-md);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-family: var(--arynaz-font-family);
}

.btn-primary {
	background-color: var(--arynaz-walnut);
	color: #fff;
}

.btn-primary:hover {
	background-color: #724c30;
	color: #fff;
}

.btn-outline {
	background-color: transparent;
	border: 1px solid var(--arynaz-border);
	color: var(--arynaz-text-main);
}

.btn-outline:hover {
	border-color: var(--arynaz-walnut);
	color: var(--arynaz-walnut);
}

.btn-icon {
	padding: 8px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--arynaz-surface);
	color: var(--arynaz-text-main);
	box-shadow: var(--arynaz-shadow-sm);
}

.btn-icon:hover {
	background: var(--arynaz-walnut);
	color: #fff;
}

/* Form Control */
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: var(--arynaz-primary);
    box-shadow: 0 0 0 3px rgba(110, 70, 50, 0.1);
}

/* Hide scrollbar for slider containers */
.products-slider::-webkit-scrollbar, .testimonials-slider::-webkit-scrollbar {
  display: none;
}


/* Testimonials Responsive Layout */
.testimonial-card {
    min-width: 60%;
    max-width: 60%;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .testimonial-card {
        min-width: 85%;
        max-width: 85%;
    }
}
