@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease forwards;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", "Roboto", sans-serif;
  color: #333333;
  line-height: 1.5;
  background-color: #f4f4f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #002e5b;
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.section-padding {
  padding: 64px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-top: 0;
  padding-bottom: 0;
}

.header-top {
  background-color: #002e5b;
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.875rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main {
  padding: 16px 0;
}
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #002e5b;
}
.logo span {
  color: #ff6600;
}

.nav-menu {
  display: none;
}
@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    gap: 32px;
  }
}

.nav-link {
  font-weight: 500;
  color: #002e5b;
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6600;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #ff6600;
}
.nav-link:hover::after {
  width: 100%;
}

.mega-menu-container {
  position: relative;
}
.mega-menu-container:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 600px;
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer {
  background-color: #002e5b;
  color: #ffffff;
  padding: 64px 0 16px;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-col ul li a:hover {
  color: #ff6600;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}
.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
.product-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #f4f4f4;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-details {
  padding: 16px;
  width: 100%;
  text-align: left;
}

.product-category {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-size: 1.25rem;
  color: #002e5b;
  font-weight: 700;
}

.product-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}
.product-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #002e5b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.product-actions button:hover {
  background: #ff6600;
  color: #ffffff;
}

.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  color: #002e5b;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #333333;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: #ff6600;
}
.form-input:focus + .form-label {
  top: -10px;
  left: 10px;
  font-size: 0.875rem;
  color: #ff6600;
  background: #ffffff;
  padding: 0 5px;
}
.form-input:not(:placeholder-shown) + .form-label {
  top: -10px;
  left: 10px;
  font-size: 0.875rem;
  color: #002e5b;
  background: #ffffff;
  padding: 0 5px;
}

.form-label {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #666666;
  transition: all 0.3s ease;
  pointer-events: none;
}

.store-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 16px;
  cursor: pointer;
}
.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.store-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background-color: #f4f4f4;
}

.store-info {
  padding: 16px;
}

.store-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #002e5b;
  margin-bottom: 8px;
}

.store-category {
  font-size: 0.875rem;
  color: #666666;
  font-style: italic;
}

.product-vendor {
  font-size: 0.875rem;
  color: #ff6600;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.btn-order {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  font-size: 0.875rem;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #f4f4f4;
}

.category-name {
  padding: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #002e5b;
}

.offer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff6600;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 1;
}

.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #28a745;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}
.discount-badge .discount-percent {
  font-size: 1.25rem;
}
.discount-badge .discount-text {
  font-size: 10px;
}

.ramadan-section {
  background: linear-gradient(135deg, #0d8f4f 0%, #c7a941 100%);
  position: relative;
  overflow: hidden;
}
.ramadan-section::before {
  content: "☪";
  position: absolute;
  top: -50px;
  right: -50px;
  font-size: 300px;
  opacity: 0.1;
  color: #ffffff;
}
.ramadan-section h2 {
  color: #ffffff !important;
}
.ramadan-section .ramadan-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 4px 16px;
  border-radius: 24px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #002e5b;
}
.btn-icon:hover {
  background-color: #f4f4f4;
  color: #ff6600;
}
