html[lang="ar"] body {
    font-family: 'Cairo' !important;
    direction: rtl;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px; /* scrollbar width */
}

::-webkit-scrollbar-track {
  background: #000; /* track color */
}

::-webkit-scrollbar-thumb {
  background: #9216ce; /* scrollbar color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9216ce; /* darker shade on hover */
}

.alignwide{
margin-inline:0;
}

.wc-block-components-product-name{
color: #fff;
    font-weight: bold;
    font-size: 20px!important;
}

/* Preloader overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010101; /* white background, change if needed */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}



/* Hide after loaded */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Dual-color spinner */
#preloader .spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(0,0,0,0.1);
  border-top: 6px solid #9216ce; /* purple */
  border-right: 6px solid #0ba9eb; /* blue */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/*
 **/
/* Base styles for sections */
section {
  position: relative;
 /* min-height: 100vh;*/
  width: 100%;
  overflow: hidden;
}

/* Make sure stacking works */
#section1, #section2, #section3,#section4 {
  position: sticky;
  top: 0;
}

/* Control z-index stacking */
#section1 { z-index: 1; }
#section2 { z-index: 2; }
#section3 { z-index: 3; }
#section4 { z-index: 4; }

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/**/

.scroll-fade {
  opacity: 0;
  transform: translateX(50px); /* start from right */
  transition: all 0.8s ease-in-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade out when leaving */
.scroll-fade.hidden {
  opacity: 0;
  transform: translateX(-50px); /* exit to left */
}

/* Stagger delays */
.delay-1 { transition-delay: 0.5s; }
.delay-2 { transition-delay: 0.7s; }
.delay-3 { transition-delay: 0.9s; }
.delay-4 { transition-delay: 0.12s; }


/**/

/* Form container */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  color: #fff; /* text visible on black background */
}

/* Labels */
.wpcf7-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

/* Inputs */
.wpcf7-form .form-control {
  display: block;
  width: 100%;
  padding: 0.6rem 0.9rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: #222; /* dark to match black bg */
  background-clip: padding-box;
  border: 1px solid #444;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* On focus */
.wpcf7-form .form-control:focus {
  border-color: #9216ce;
  box-shadow: 0 0 0 0.2rem rgba(146, 22, 206, 0.25);
  outline: none;
}

/* Submit button */
.wpcf7-form .btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 0!important;
  background-color: #9216ce;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.wpcf7-form .btn:hover {
  background-color: #7a12aa; /* darker purple on hover */
}

/*----------------*/

.exhibition-form .row{
display:flex;
}
.exhibition-form .row .form-group{
		padding:8px;
		width:100%;
}
.exhibition-form .row .form-control{
padding:8px;
background:#fff4e6;
		color:#000;
		width:100%;
border-color:#fff4e6;
}

.btn.btn-submit{
background:#fff4e6;
color:#753732;
transition:.4s;
}

.btn.btn-submit:hover{
background:#fff4e6;
color:#753732;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover{
color:#fff;
}