/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #fff;
}
.logo {
  font-size: 28px;
  font-weight: bold;
  color: black; /* FATUSH in black */
  letter-spacing: 2px;
}

.logo span {
  color: #f9e65c; /* STYLES in yellow */
}


.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.signup-btn {
  background: #111;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

/* User Menu */
.user-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-menu span {
  color: #111;
  font-weight: 600;
}

.user-menu a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.user-menu a:hover {
  color: #f9e65c;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background: #f7f7f7; /* soft grey background */
  border-radius: 12px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
}

.hero-text .highlight {
  display: inline-block;
  position: relative;
}

.hero-text .yellow {
  background: #f9e65c;
  padding: 0 8px;
}

.hero-text p {
  margin: 20px 0;
  font-size: 18px;
  color: #555;
}

.shop-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.hero-img img {
  width: 420px;
  border-radius: 12px;
}

/* NEW ARRIVALS Section */
.new-arrivals {
  padding: 80px 60px;
  background: #fff;
}

.arrivals-container {
  max-width: 1200px;
  margin: 0 auto;
}

.arrivals-title {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.arrivals-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f9e65c;
}

/* Added horizontal scrolling container */
.products-scroll-container {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.products-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #f9e65c #f0f0f0;
}

.products-scroll::-webkit-scrollbar {
  height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
  background: #f9e65c;
  border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
  background: #f7d93d;
}

/* Updated product cards for horizontal layout */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-width: 320px;
  flex-shrink: 0;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 12px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #f9e65c;
  margin-bottom: 20px;
}

.explore-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.explore-btn:hover {
  background: #f9e65c;
  color: #111;
  transform: translateY(-2px);
}

/* Payday Sale Section */
.payday-sale {
  background: #f9e65c;
  padding: 80px 60px;
  margin: 40px 0;
}

.sale-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.sale-text {
  flex: 1;
  padding-right: 40px;
}

.sale-text h2 {
  font-size: 48px;
  font-weight: bold;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sale-text p {
  font-size: 18px;
  color: #111;
  margin-bottom: 20px;
}

.sale-date {
  margin-bottom: 30px;
}

.sale-date strong {
  font-size: 16px;
  color: #111;
}

.sale-date small {
  color: #666;
  font-size: 14px;
}

.shop-now-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.sale-image {
  flex: 1;
  text-align: center;
}

.sale-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* App Download Section */
.app-download {
  padding: 80px 60px;
  background: #f8f8f8;
}

.app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.app-text {
  flex: 1;
  padding-right: 40px;
}

.app-text h2 {
  font-size: 42px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.app-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.download-btn {
  height: 50px;
  cursor: pointer;
  transition: transform 0.2s;
}

.download-btn:hover {
  transform: scale(1.05);
}

.app-mockup {
  flex: 1;
  text-align: center;
}

.app-mockup img {
  max-width: 100%;
  height: auto;
}

/* Auth Section */
.auth-section {
  padding: 80px 60px;
  background: #f8f8f8;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.auth-container h2 {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-bottom: 30px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #f9e65c;
}

.auth-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-btn:hover {
  background: #333;
}

.auth-link {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.auth-link a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.auth-link a:hover {
  color: #f9e65c;
}

/* Orders Section */
.orders-section {
  padding: 80px 60px;
  background: #f8f8f8;
  min-height: 70vh;
}

.orders-container {
  max-width: 1000px;
  margin: 0 auto;
}

.orders-container h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 30px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.order-id {
  font-weight: bold;
  color: #111;
  font-size: 18px;
}

.order-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.order-status.pending {
  background: #fff3cd;
  color: #856404;
}

.order-status.paid {
  background: #d4edda;
  color: #155724;
}

.order-status.shipped {
  background: #cce5ff;
  color: #004085;
}

.order-status.completed {
  background: #d1ecf1;
  color: #0c5460;
}

.order-items {
  margin-bottom: 15px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
  border-bottom: none;
}

.item-details {
  flex: 1;
}

.item-name {
  font-weight: 600;
  color: #111;
}

.item-qty {
  color: #666;
  font-size: 14px;
}

.item-price {
  font-weight: bold;
  color: #111;
}

.order-total {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #f9e65c;
}

.order-date {
  color: #666;
  font-size: 14px;
}

/* Enhanced Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 18px;
  font-weight: bold;
  color: #f9e65c;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions button,
.product-actions a {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-actions button {
  background: #111;
  color: #fff;
}

.product-actions button:hover {
  background: #333;
}

.product-actions a {
  background: #f9e65c;
  color: #111;
}

.product-actions a:hover {
  background: #f7d93d;
}

/* Enhanced Cart Styles */
.cart {
  padding: 80px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.cart h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-item button {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.cart-item button:hover {
  background: #c82333;
}

.cart h3 {
  font-size: 24px;
  font-weight: bold;
  color: #111;
  text-align: right;
  margin: 30px 0 20px;
  padding: 20px;
  background: #f9e65c;
  border-radius: 8px;
}

.cart > button {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.cart > button:hover {
  background: #333;
}

/* Newsletter Section */
.newsletter {
  background: #f9e65c;
  padding: 60px;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.3;
}

.newsletter-content p {
  font-size: 16px;
  color: #111;
  margin-bottom: 30px;
}

.email-signup {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.email-signup input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
  outline: none;
}

.send-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* Footer Section */
.footer {
  background: #111;
  color: #fff;
  padding: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #f9e65c;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.facebook {
  background: #3b5998;
  color: #fff;
}

.social-icon.twitter {
  background: #1da1f2;
  color: #fff;
}

.social-icon.instagram {
  background: #e4405f;
  color: #fff;
}

.social-icon.linkedin {
  background: #0077b5;
  color: #fff;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 100px 60px 80px;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 60px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  margin-bottom: 25px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #f9e65c;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
  margin-bottom: 80px;
}

.values-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.values-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f9e65c;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.team-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.team-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f9e65c;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 22px;
  font-weight: bold;
  color: #111;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 16px;
  color: #f9e65c;
  font-weight: 600;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 100px 60px 80px;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.contact-hero-content p {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 80px 60px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin-bottom: 30px;
  position: relative;
}

.contact-form-section h2::after,
.contact-info-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f9e65c;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f9e65c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: flex-start;
}

.contact-btn:hover {
  background: #333;
}

.contact-info-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: #f9e65c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.business-hours {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
}

.business-hours h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
  text-align: center;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item span:first-child {
  font-weight: 600;
  color: #111;
}

.hours-item span:last-child {
  color: #666;
}

.faq-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.faq-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #f9e65c;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero,
  .sale-content,
  .app-content,
  .auth-section,
  .orders-section,
  .about-section,
  .contact-main {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .sale-text,
  .app-text,
  .auth-container,
  .orders-container,
  .about-hero,
  .contact-hero,
  .about-content,
  .contact-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .navbar {
    padding: 20px 30px;
  }

  .hero,
  .payday-sale,
  .app-download {
    padding: 40px 30px;
  }

  .new-arrivals {
    padding: 40px 20px;
  }

  .products-scroll {
    gap: 20px;
    padding: 10px 0;
  }

  .product-card {
    min-width: 280px;
  }

  .arrivals-title {
    font-size: 28px;
  }

  .about-hero-content h1,
  .contact-hero-content h1 {
    font-size: 36px;
  }

  .values-grid,
  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-section.reverse {
    flex-direction: column;
  }
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #000; /* FATUSH in black */
  }

  .logo span {
    color: #f9e65c; /* STYLES in yellow */
  }
header nav {
  display: flex;
  gap: 30px;
}
  .navbar button.signup-btn,
  .navbar button.login-btn {
    padding: 8px 16px;
    margin-left: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
  }

  .navbar .signup-btn {
    background-color: #f9e65c; /* yellow */
    color: #000; /* black text */
  }

  .navbar .login-btn {
    background-color: #000; /* black */
    color: #f9e65c; /* yellow text */
  }
header nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  position: relative;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f9e65c;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #f9e65c;
}

header nav a:hover::after {
  width: 100%;
}

/* ===== MAIN SECTION ===== */
.all-products {
  max-width: 1250px;
  margin: 80px auto;
  padding: 0 30px;
}

.all-products h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #111;
}

/* ===== PRODUCTS GRID ===== */

/* ===== PRODUCT CARD ===== */
.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 192, 192, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Product Image */
.product-card .product-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Product Info */
.product-card .product-info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.product-card .product-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.product-card .product-info .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #f9e65c;
}

.product-card .product-info button {
  margin-top: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: all 0.3s ease;
}

.product-card .product-info button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  header nav {
    gap: 15px;
  }
  

  .all-products {
    margin: 40px auto;
  }
}
/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  letter-spacing: 1px;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #111;
  position: relative;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f9e65c;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #f9e65c;
}

header nav a:hover::after {
  width: 100%;
}

/* ===== MAIN SECTION ===== */
.all-products {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.all-products h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #111;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Product Image */
.product-card .product-image img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Product Info */
.product-card .product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.product-card .product-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.product-card .product-info .product-price {
  font-size: 18px;
  font-weight: 700;
  color: #f9e65c;
}

.product-card .product-info button {
  margin-top: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: all 0.3s ease;
}

.product-card .product-info button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  header nav {
    gap: 15px;
  }

  .all-products {
    margin: 40px auto;
  }
}
/* -------------------- Product Details Section -------------------- */
.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 60px 20px;
  background-color: #fdfdfd;
}

.product-details .product-image {
  flex: 1 1 350px;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-details .product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-details .product-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.product-details .details {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.product-details .details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.product-details .details p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.product-details .details p span {
  font-weight: 700;
  color: #e63946; /* price highlight */
}

.product-details .details button#add-cart-btn {
  background-color: #e69b39;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 200px;
}

.product-details .details button#add-cart-btn:hover {
  background-color: #e99e2d;
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .product-details {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 15px;
  }

  .product-details .product-image,
  .product-details .details {
    max-width: 10%;
  }

  .product-details .details h2 {
    font-size: 1.8rem;
  }
}
/* style.css */

/* General reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}

header {
  background-color: #000;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f9e65c;
}

header nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s ease;
}

header nav a:hover {
  color: #f9e65c;
}

/* Cart Section */
.cart {
  max-width: 800px;
  margin: 40px auto;
  background: #000;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  color: #fff;
}

.cart h2 {
  margin-bottom: 24px;
  color: #f9e65c;
  font-size: 1.6rem;
  text-align: center;
}

#cart-items ul {
  list-style: none;
}

#cart-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f9e65c;
}

#cart-items li img {
  border-radius: 8px;
}

#cart-items li input[type="number"] {
  padding: 4px 8px;
  border: 1px solid #f9e65c;
  border-radius: 6px;
  width: 60px;
  text-align: center;
  background-color: #000;
  color: #fff;
}

#cart-items li button {
  background-color: #f9e65c;
  color: #000;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#cart-items li button:hover {
  background-color: #e6d850;
}

#checkout-area {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#checkout-area input {
  border: 1px solid #f9e65c;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
}

#checkout-area button {
  background-color: #f9e65c;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.2s ease;
}

#checkout-area button:hover {
  background-color: #e6d850;
}

/* Subtotal styling */
.cart p strong {
  font-size: 1.2rem;
  color: #f9e65c;
}

/* Responsive */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav a {
    margin-left: 0;
    margin-top: 8px;
  }

  #cart-items li {
    flex-direction: column;
    align-items: flex-start;
  }

  #cart-items li img {
    margin-bottom: 8px;
  }
}
.navbar .cart-link {
    display: inline-block;
    padding: 8px 16px;
    margin-left: 8px;
    background-color: #f9e65c; /* yellow background */
    color: #000; /* black text */
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }

  .navbar .cart-link:hover {
    background-color: #000; /* black on hover */
    color: #f9e65c; /* yellow text on hover */
  }
/* Scope ONLY to all-products grid */
.all-products .product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s;
}

.all-products .product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.all-products .product-info {
  margin-top: 10px;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: black; /* FATUSH in black */
  letter-spacing: 2px;
}

.logo span {
  color: #f9e65c; /* STYLES in yellow */
}
