/*
Theme Name: Francesco Store
Author: Francesco
Version: 1.0
Description: WooCommerce Clean Theme
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

/* HEADER */
header {
  background: #111;
  color: #fff;
  padding: 15px 0;
}

.container {
  width: 90%;
  margin: auto;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
}

.price {
  color: #e63946;
  font-weight: bold;
}

/* HOVER */
.hover-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
  transition: 0.3s;
}

.product-card:hover .hover-actions {
  bottom: 10px;
}

button,
.add_to_cart_button {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 12px;
  margin: 5px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}








/* FIX MENU */
header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header ul li {
  margin: 0 10px;
}

header ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* RTL SUPPORT */
body {
  direction: rtl;
  text-align: right;
}

/* HEADER تحسين */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* اللوجو يمين */
.header-flex h2 {
  order: 2;
}

/* المنيو شمال */
.header-flex nav {
  order: 1;
}