:root {
  --bg-color: #FAFAFA;
  --text-color: #1A1A1A;
  --accent-gold: #D4AF37;
  --accent-green: #2C3E50;
  --white: #FFFFFF;
  --gray-light: #EEEEEE;
  --gray-dark: #777777;
  
  --font-main: 'Cairo', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
}

button {
  cursor: pointer;
  font-family: var(--font-main);
  border: none;
  background: none;
  transition: var(--transition);
}

/* Typography */
.h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; font-weight: 800; }
.h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.3; }
.h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #b5952f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--text-color);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--text-color);
  color: var(--text-color);
}

.btn-outline-dark:hover {
  background-color: var(--text-color);
  color: var(--white);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-icon-wrapper {
  position: relative;
  font-size: 1.25rem;
}

.cart-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background-color: var(--accent-gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-color);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  padding: 100px 20px 60px;
  position: relative;
}

@keyframes float3d {
  0% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-15px) rotateX(2deg) rotateY(-2deg); }
  100% { transform: translateY(0) rotateX(0) rotateY(0); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
  animation: float3d 6s ease-in-out infinite;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 800px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--white);
  font-size: 1.5rem;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.trust-text {
  font-weight: 700;
  font-size: 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  text-align: center;
  padding: 50px 30px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--accent-green);
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 20px 20px 30px rgba(0,0,0,0.1), -10px -10px 20px rgba(255,255,255,0.8);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/4;
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--white);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  font-size: 1.2rem;
}

.wishlist-btn.active {
  color: #e74c3c;
}

.product-info {
  padding: 25px 20px;
}

.product-category {
  font-size: 0.75rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.product-desc {
  font-size: 0.875rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.product-price {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent-gold);
}

.product-original-price {
  text-decoration: line-through;
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-right: 8px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: #f1c40f;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--gray-light);
  color: var(--text-color);
  border-radius: 8px;
}

.product-card:hover .add-to-cart-btn {
  background-color: var(--accent-gold);
  color: var(--white);
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--bg-color);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent-green);
}

.testimonial-city {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

/* Newsletter */
.newsletter {
  background-color: var(--accent-green);
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  border-radius: 24px;
  margin: 0 20px 80px;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: 2px solid var(--accent-gold);
}

/* Shop Page */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.sidebar-filter {
  position: sticky;
  top: 100px;
  height: fit-content;
  background-color: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  margin-bottom: 30px;
}

.filter-title {
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-light);
}

.filter-list {
  list-style: none;
}

.filter-list li {
  margin-bottom: 12px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 1.05rem;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
  border-radius: 8px;
  padding: 10px 20px;
  width: 350px;
}

.search-bar input {
  border: none;
  background: none;
  padding: 0 10px;
  width: 100%;
  font-family: var(--font-main);
  font-size: 1rem;
}

.search-bar input:focus {
  outline: none;
}

.sort-dropdown {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: var(--bg-color);
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
}

/* Product Detail Page */
.product-detail-layout {
  padding-top: 120px;
  padding-bottom: 80px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 40px;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

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

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  width: 100%;
  aspect-ratio: 4/4;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.thumbnail {
  aspect-ratio: 1;
  background-color: var(--white);
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail.active {
  border-color: var(--accent-gold);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-detail h1 {
  margin-bottom: 15px;
}

.product-info-detail .price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.product-info-detail .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.product-info-detail .original-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--gray-dark);
}

.product-info-detail .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f1c40f;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.product-info-detail .review-count {
  color: var(--gray-dark);
  font-size: 0.9rem;
  margin-right: 8px;
}

.product-info-detail .description {
  margin-bottom: 40px;
  color: var(--gray-dark);
  font-size: 1.1rem;
  line-height: 1.8;
}

.specs-list {
  list-style: none;
  margin-bottom: 40px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.specs-list li {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}

.specs-list li:last-child {
  border-bottom: none;
}

.specs-list .spec-name {
  width: 150px;
  font-weight: 700;
}

.action-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  background-color: var(--white);
  overflow: hidden;
}

.qty-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background-color: var(--gray-light);
}

.qty-btn:hover {
  background-color: #e0e0e0;
}

.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.1rem;
}

.qty-input:focus {
  outline: none;
}

.add-to-cart-large {
  flex: 1;
  font-size: 1.1rem;
}

.tabs-container {
  margin-top: 80px;
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.tabs-header {
  display: flex;
  gap: 40px;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 40px;
}

.tab-btn {
  padding: 15px 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-dark);
  position: relative;
}

.tab-btn.active {
  color: var(--accent-gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
  font-size: 1.1rem;
  line-height: 1.8;
}

.tab-content.active {
  display: block;
}

/* Cart Page */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.cart-items {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
  font-weight: 700;
  color: var(--gray-dark);
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--gray-light);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  background-color: var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.cart-item-remove {
  color: #e74c3c;
  font-size: 1.5rem;
  background-color: #fdf0ef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover {
  background-color: #e74c3c;
  color: white;
}

.order-summary {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.order-summary h3 {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-light);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid var(--gray-light);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.promo-code {
  display: flex;
  margin: 30px 0;
}

.promo-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-main);
  border-left: none;
}

.promo-btn {
  padding: 12px 25px;
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: 8px 0 0 8px;
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  margin-top: 30px;
  font-size: 1.2rem;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart-icon {
  font-size: 5rem;
  color: var(--gray-light);
  margin-bottom: 30px;
}

/* Admin Dashboard */
.admin-layout {
  padding-top: 120px;
  padding-bottom: 80px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.admin-table th, .admin-table td {
  padding: 20px 25px;
  text-align: right;
  border-bottom: 1px solid var(--gray-light);
}

.admin-table th {
  background-color: var(--accent-green);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.admin-actions {
  display: flex;
  gap: 15px;
}

.btn-edit { color: #3498db; font-weight: 700; }
.btn-delete { color: #e74c3c; font-weight: 700; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--white);
  padding: 50px;
  border-radius: 16px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.close-modal {
  font-size: 1.8rem;
  color: var(--gray-dark);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
}

/* Footer */
.footer {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 350px;
  font-size: 1.1rem;
}

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

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.4s ease;
  font-size: 1.2rem;
  color: var(--white);
  transform-style: preserve-3d;
  perspective: 500px;
}

.social-link:hover {
  background-color: var(--accent-gold);
  transform: translateY(-8px) rotateY(15deg) rotateX(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-right: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(50%); }
  40% { transform: translateY(-20px) translateX(50%); }
  60% { transform: translateY(-10px) translateX(50%); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(5px) rotate(5deg); }
  50% { transform: translateX(-5px) rotate(-5deg); }
  75% { transform: translateX(5px) rotate(5deg); }
}

.shake {
  animation: shake 0.4s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toast {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 18px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 1.05rem;
}

.toast.show {
  transform: translateX(0);
}

/* Mini Cart */
.mini-cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--white);
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 2500;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
}

.mini-cart-drawer.open {
  transform: translateX(0);
}

.mini-cart-header {
  padding: 25px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 25px;
}

.mini-cart-footer {
  padding: 25px;
  border-top: 1px solid var(--gray-light);
  background-color: var(--bg-color);
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-light) 25%, #f8f8f8 50%, var(--gray-light) 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeletonLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  font-size: 1.5rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #b5952f;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .hero-btns { flex-direction: column; width: 100%; max-width: 300px; }
  .hero-btns .btn { width: 100%; }
  
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar-filter { position: static; margin-bottom: 30px; }
  .shop-header { flex-direction: column; gap: 20px; align-items: stretch; }
  .search-bar { width: 100%; }
  
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .cart-layout { grid-template-columns: 1fr; }
  .cart-header { display: none; }
  .cart-item { 
    grid-template-columns: 1fr; 
    gap: 20px; 
    position: relative;
    padding-bottom: 30px;
  }
  .cart-item-remove { position: absolute; top: 20px; left: 0; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  
  .admin-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .thumbnail-grid { grid-template-columns: repeat(4, 1fr); }
  .action-row { flex-direction: column; }
  .tabs-header { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; }
}

/* Checkout & Map */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 80px;
}
.checkout-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.map-container iframe {
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr !important; }
}
