*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: #1A1C20;
}
/* ====================================================================================================== */
/* the name of the store */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    box-shadow: 5px 5px 8px #FFB22C;
    border: 2px solid  #FFB22C; 
    height:70px;
    padding: 0 20px;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 0;   
}
.name{
    font-size: 1.5rem;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;   
}
.navigation a{
    padding: 5px 10px;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
    color: #F0A500;
    margin-right: -5px;
}
.navigation a:hover{
    color:white ; 
}

.split-btn-container {
    display: inline-flex;
    border: 2px solid #F0A500;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 10px;
}

.split-btn-part {
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    transition: background-color 0.3s, color 0.3s;
}

.split-btn-part.left {
    border-right: 3px solid #F0A500;
}

.split-btn-part:hover {
    background-color: #F0A500;
    color: #343434;
}
 

       /* Vedioooooooooooooooooooooooo */

.welcome{
    width: 100%;
    background-color: #343434;
    margin: 20px 0px;
    height: 420px;
    margin-top: 100px;
}      
.video {
    display: flex;
    margin-left: 20px;
    padding-left: 60px;
    
}
video{
    height: 400px;
    width: 94%;
    margin-left: 50px;
    margin-top: 10px;
    border-radius: 8px;
    object-fit: cover;
    border: 3.5px solid #FFD43B;
}
body.light-mode .welcome {
  background-color: #fff8dc;  /* لون أصفر فاتح */
  color: black;
  border: 2px solid #F0A500;
}
body.light-mode .footer,
body.light-mode .footer p,
body.light-mode .footer a,
body.light-mode .footer span {
  color: #F0A500 !important;
}
/* ========================================================================================== */

/* ==== Offer Sections Grid Style ==== */
.section {
  margin: 40px 60px;
}

.section h2 {
  color: #F0A500;
  font-size: 28px;
  margin-bottom: 20px;
  border-bottom: 2px solid #F0A500;
  padding-bottom: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: #343434;
  border: 2px solid #F0A500;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}

.product-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #FFD43B;
  margin-bottom: 10px;
}

.product-card h3 {
  color: #FFD43B;
  font-size: 20px;
  margin: 10px 0 5px;
}

.product-card p {
  color: white;
  margin-bottom: 10px;
}



.section a {
  display: inline-block;
  margin-top: 15px;
  color: #F0A500;
  font-weight: bold;
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

/* .product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
} */

.add-to-cart {
  background-color: #FFD43B;
  color: rgb(18, 18, 18);
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-right: 7px;
}

.add-to-cart:hover {
  background-color: #fab51f;
}

.heart-icon {
  font-size: 20px;
  color: gray;
  cursor: pointer;
  transition: color 0.3s;
}

.heart-icon.active {
  color: red;
}

/* Go To Top  */
#Backtotop{
    background-color: #4a4a4a;
    color: white;
    border-radius: 50%;
    padding: 3px 20px;
    position: fixed;
    z-index: 100;
    border: none;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    font-size: 30px;
    display: none;
    box-shadow: 0 0 2px #FFB22C;
}
#Backtotop:hover{
    border:1px solid #FFB22C;
    color: #F0A500;
}


footer {
    background-color: #343434;
    color: #F0A500;
    padding: 32px 5% 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 30px;
}

.footer-section {
    flex: 1;
    padding: 0 16px;
}

.footer-section h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}
.footer-section ul li a {
    color: #F0A500;
    text-decoration: none;
}
.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    color: #F0A500;
    font-size: 1.2rem;
}
.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 20px;
}


