/* ============================================
   KINAAV - Modern Yellow Theme
   A warm, elegant e-commerce design system
   ============================================ */

/* -------------------- CSS Variables -------------------- */
:root {
  /* Primary Soft Clay Palette (JEOMSU refined) */
  --primary: #D27B5A;            /* soft clay */
  --primary-hover: #C0694A;      /* deeper clay */
  --primary-light: #F7E1D5;      /* peach tint */
  --primary-lighter: #FFF7F0;    /* cream/peach */
  --primary-dark: #8B3D2A;       /* accent for text/icons */
  --primary-rgb: 210, 123, 90;

  /* Secondary – muted blue-grey for subtle accents */
  --secondary: #6F7FA4;
  --secondary-light: #E8ECF7;

  /* Background Gradients – soft, low-contrast */
  --gradient-bg: radial-gradient(circle at top left, #FFF7F0 0%, #FBEDE3 40%, #F5E4DA 100%);
  --gradient-bg-light: linear-gradient(135deg, #FFFDF9 0%, #FAF0E6 100%);

  /* Neutral Surfaces */
  --surface: #FFF9F4;
  --surface-card: #FFFFFF;
  --surface-elevated: #FFFFFF;

  /* Text Colors */
  --text-primary: #1F2933;       /* deep slate */
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  
  /* Semantic Colors (unchanged) */
  --success: #059669;
  --success-light: #D1FAE5;
  --danger: #DC2626;
  --danger-light: #FEE2E2;
  --warning: #F59E0B;
  --info: #3B82F6;
  
  /* Borders & Softer Shadows */
  --border-color: #E3E0DA;
  --border-light: #F3EEE7;
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 22px 60px rgba(15, 23, 42, 0.10);
  --shadow-yellow: 0 10px 30px rgba(210, 123, 90, 0.30);
  
  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* -------------------- Base Styles -------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--gradient-bg-light);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.main-content {
  min-height: calc(100vh - 80px);
}

/* Generic section wrapper (used by cart and others) */
.section-content {
  padding: 3.5rem 0 4.25rem;
}

.section-content > .container,
.section-content > .container-xxl,
.section-content > .container-lg {
  max-width: 1120px;
}

/* ============================================
   AUTH LAYOUT (LOGIN / REGISTER)
   ============================================ */

.auth-body {
	min-height: 100vh;
	background: var(--gradient-bg);
	color: var(--text-primary);
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	padding-bottom: 0;
}

.auth-main {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.auth-section {
	width: 100%;
}

.auth-layout {
	min-height: 100vh;
}

.auth-visual {
  height: 100%;
	background: radial-gradient(circle at top left, #fff7f0 0%, #f7e1d5 40%, #f5e4da 100%);
	color: var(--text-primary);
}

.auth-visual-inner {
	padding: 2.5rem 3rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.auth-logo-img {
	height: 40px;
	width: auto;
}

.auth-showcase {
	position: relative;
	margin-top: auto;
  flex-grow: 1; /* ADD THIS to ensure it uses all vertical space below the logo */
  display: flex; /* ADD THIS to manage the inner card positioning */
  align-items: flex-end; /* Keeps the slideshow at the bottom */
}

.auth-showcase-card {
  width: 100%;
	position: relative;
	height: 100vh;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.auth-showcase-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateY(20px);
	animation: authShowcaseSlide 18s infinite;
}

.auth-showcase-slide:nth-child(2) {
	animation-delay: 6s;
}

.auth-showcase-slide:nth-child(3) {
	animation-delay: 12s;
}

.auth-showcase-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.auth-showcase-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.1rem 1.4rem;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.65) 100%);
	color: #fff;
}

.auth-showcase-caption h5 {
	margin-bottom: 0.2rem;
	font-weight: 700;
}

.auth-showcase-caption p {
	margin-bottom: 0;
	font-size: 0.85rem;
}

.auth-form-column {
	padding: 2rem 1.5rem;
}

@media (min-width: 992px) {
	.auth-form-column {
		padding: 3rem 4rem;
	}
}

.auth-form-card {
	max-width: 440px;
	border-radius: var(--radius-xl);
}

.auth-divider {
	position: relative;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 30%;
	height: 1px;
	background: var(--border-light);
}

.auth-divider::before {
	left: 0;
}

.auth-divider::after {
	right: 0;
}

@media (max-width: 767.98px) {
	.auth-main {
		align-items: flex-start;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	.auth-form-card {
		box-shadow: var(--shadow-md);
		border-radius: var(--radius-lg);
	}
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

/* -------------------- Selection -------------------- */
::selection {
  background-color: var(--primary-light);
  color: var(--text-primary);
}

/* -------------------- Scrollbar -------------------- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--border-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
  border: 2px solid var(--border-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* -------------------- Focus Styles -------------------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* -------------------- Main Container -------------------- */
main.container-xxl {
  animation: fadeIn 0.4s ease-out;
}

/* ============================================
   BUTTONS
   ============================================ */

/* Primary Button - Orange CTA Style */
.btn-primary {
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left var(--transition-slow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.25);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  /* Use a darker version of your primary color */
  background: var(--primary-dark); 
  
  /* Reset the transform to make it feel 'pressed in' */
  transform: translateY(0); 
  
  /* Use a deeper, more subtle shadow for the 'pressed' look */
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.15); 
  
  /* Ensure the text stays white */
  color: #fff;
  
  /* Critical: Remove the default blue outline/focus color many browsers apply on click */
  outline: none; 
}

.btn-primary:focus {
    /* Set background color explicitly on focus to override browser defaults */
    background: var(--primary-dark);
    
    /* Ensure the focus ring uses your desired color */
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.3);
    
    /* Critical: Remove the default border/outline */
    border-color: transparent;
    outline: none;
}

.btn-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.3);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Success Button */
.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #047857 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.btn-success:hover {
  background: linear-gradient(135deg, #047857 0%, #065F46 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.39);
}

/* Outline Buttons */
.btn-outline-primary {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-outline-primary:active {
  /* 1. Swap Colors: Fill the button with the primary color */
  background-color: none;
  color: white; /* Change text to white for contrast */
  
  /* 2. Animation: Apply a press-down effect */
  transform: translateY(1px); /* Move 1px down to simulate a physical press */
  box-shadow: none; /* Remove any shadow to flatten the look */
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-secondary {
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
  background: transparent;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-outline-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-outline-danger {
  color: var(--danger);
  border: 2px solid var(--danger);
  background: transparent;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-outline-danger:hover {
  background: var(--danger);
  color: #fff;
}

/* Link Button */
.btn-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.btn-link:hover {
  color: var(--primary-hover);
}

.btn-link:hover::after {
  width: 100%;
}

/* ============================================
   CARDS
   ============================================ */
.card {
	background: var(--surface-card);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: all var(--transition-base);
	overflow: hidden;
}

.card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--primary-light);
}

.card-header {
	background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--surface-card) 100%);
	border-bottom: 1px solid var(--border-light);
	font-weight: 600;
	padding: 0.9rem 1.25rem;
}

/* Cart page refinements */
.cart-page-header h2 {
	font-size: 1.9rem;
}

.cart-page-header .badge {
	border-radius: var(--radius-full);
	padding: 0.5rem 1.25rem;
}

.cart-items-card {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
}

.cart-items-card .card-body {
	padding: 0;
}

.cart-page .row.g-4 {
	margin-top: 0.5rem;
}

.cart-page .row.align-items-center {
	padding-inline: 1.25rem;
}

.cart-page .row.align-items-center:nth-child(odd) {
	background: rgba(248, 244, 238, 0.8);
}

.cart-page .row.align-items-center:nth-child(even) {
	background: #fff;
}

.cart-summary-card {
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
}

.cart-summary-card .card-body {
	padding: 1.75rem 1.75rem 1.5rem;
}

.cart-page .btn-outline-secondary {
	border-radius: var(--radius-full);
	border-width: 1px;
}

/* ============================================
   ORDER TRACKING
   ============================================ */

.order-detail-page .order-header {
	margin-bottom: 1.5rem;
}

.order-timeline {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.order-step {
	flex: 1;
	text-align: center;
	position: relative;
	font-size: 0.8rem;
}

.order-step::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 50%;
	right: -50%;
	height: 3px;
	background: var(--border-light);
	z-index: 0;
}

.order-step:last-child::before {
	display: none;
}

.order-step-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.4rem;
	font-size: 0.85rem;
	color: var(--text-muted);
	position: relative;
	z-index: 1;
}

.order-step-label {
	color: var(--text-secondary);
	font-weight: 500;
}

.order-step.completed .order-step-circle {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.order-step.completed::before {
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.order-step.current .order-step-circle {
	background: var(--primary-light);
	border-color: var(--primary);
	color: var(--primary-dark);
	box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

@media (max-width: 768px) {
	.order-timeline {
		padding: 1rem 0.75rem;
	}
	.order-step-label {
		font-size: 0.7rem;
	}
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.card-title a:hover {
  color: var(--primary);
}

.card-text {
  color: var(--text-secondary);
}

.card-img-top {
  transition: transform var(--transition-slow);
}

.card:hover .card-img-top {
  transform: scale(1.03);
}

/* ============================================
   FORMS
   ============================================ */
.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.625rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background-color: var(--surface-card);
}

.form-control:hover {
  border-color: var(--text-light);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
  background-color: #fff;
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-select {
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  transition: all var(--transition-fast);
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

/* ============================================
   TABLES
   ============================================ */
.table {
  --bs-table-bg: transparent;
  border-collapse: separate;
  border-spacing: 0;
}

.table thead th {
  background: var(--primary-lighter);
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-light);
  padding: 1rem;
}

.table tbody tr {
  transition: background-color var(--transition-fast);
}

.table tbody tr:hover {
  background-color: var(--primary-lighter);
}

.table tbody td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  animation: slideInDown 0.3s ease-out;
}

.alert-success {
  background: var(--success-light);
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-danger {
  background: var(--danger-light);
  color: var(--danger);
  border-left: 4px solid var(--danger);
}

.alert-warning {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  font-weight: 600;
  padding: 0.35em 0.65em;
  border-radius: var(--radius-full);
}

.badge.bg-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #B91C1C 100%) !important;
}

.badge.bg-success {
  background: linear-gradient(135deg, var(--success) 0%, #047857 100%) !important;
}

.badge.bg-warning {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
  color: #fff !important;
}

.badge.bg-secondary {
  background: var(--text-muted) !important;
}

/* ============================================
   DROPDOWNS
   ============================================ */
.dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  animation: fadeInDown 0.2s ease-out;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.dropdown-item:hover, .dropdown-item:focus {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.dropdown-divider {
  border-color: var(--border-light);
  margin: 0.5rem 0;
}

/* ============================================
   INPUT GROUPS
   ============================================ */
.input-group .form-control {
  border-radius: 0;
}

.input-group .btn {
  border-radius: 0;
}

.input-group > :first-child {
  border-top-left-radius: var(--radius-md) !important;
  border-bottom-left-radius: var(--radius-md) !important;
}

.input-group > :last-child {
  border-top-right-radius: var(--radius-md) !important;
  border-bottom-right-radius: var(--radius-md) !important;
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item img {
  transition: transform 0.5s ease;
}

.carousel-item:hover img {
  transform: scale(1.02);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  opacity: 0.5;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  opacity: 0;
  transition: all var(--transition-base);
  margin: 0 1rem;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0.3);
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
h2.mb-0, .section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

h2.mb-0::after, .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary {
  color: var(--primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.shadow-yellow {
  box-shadow: var(--shadow-yellow);
}

/* Hover lift effect */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Price display */
.price-current {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Stock status */
.stock-available {
  color: var(--success);
  font-weight: 600;
}

.stock-low {
  color: var(--warning);
  font-weight: 600;
}

.stock-out {
  color: var(--danger);
  font-weight: 600;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 1rem 1.5rem;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-left: 4px solid var(--success);
}

.toast-success {
  border-left-color: var(--success);
  color: var(--success);
}

.toast-error {
  border-left-color: var(--danger);
  color: var(--danger);
}

.toast-fade-out {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

/* ============================================
   FOOTER – SOFT CLAY / CREAM STRIP
   ============================================ */
.footer {
	background: linear-gradient(180deg, #FFF7F0 0%, #FBEDE3 50%, #F5E4DA 100%);
	color: var(--text-secondary);
	padding: 3rem 0 1.75rem;
	border-top: 1px solid var(--border-light);
	box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.04);
}

.footer a {
	color: var(--text-muted);
	transition: color var(--transition-fast);
}

.footer a:hover {
	color: var(--primary);
}

.footer-brand {
	color: var(--primary-dark);
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .card-body {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  main.container-xxl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .carousel {
    border-radius: var(--radius-md);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .btn,
  .carousel,
  footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

