/* ===== GLOBAL DIGITAL CREW — STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #0a0a0f;
  --primary-light: #13131a;
  --accent: #ff5722;
  --accent-light: #ff7a50;
  --white: #ffffff;
  --gray-100: #f5f5f7;
  --gray-200: #e5e5ea;
  --gray-500: #8e8e93;
  --gray-800: #1c1c1e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--gray-100); color: var(--primary); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-box {
  background: var(--accent); color: var(--white);
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  padding: 5px 8px; border-radius: 6px; letter-spacing: 0.5px;
}
.logo-text { font-family: var(--font-display); color: var(--white); font-size: 17px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white) !important;
  padding: 8px 18px; border-radius: 50px; font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.cart-btn:hover { opacity: 0.88 !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,10,15,0.92) 40%, rgba(10,10,15,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-block; background: rgba(255,87,34,0.15); border: 1px solid rgba(255,87,34,0.4);
  color: var(--accent-light); font-size: 13px; font-weight: 600; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(48px, 7vw, 88px);
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.hero-content h1 em { color: var(--accent); font-style: normal; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,87,34,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,87,34,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 16px;
  border: 1px solid rgba(255,255,255,0.25); transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--primary); color: var(--white);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-bottom: 1px solid #1f1f2e;
}
.feat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px; border-right: 1px solid #1f1f2e;
}
.feat-item:last-child { border-right: none; }
.feat-icon { font-size: 28px; flex-shrink: 0; }
.feat-item strong { font-family: var(--font-display); font-size: 15px; display: block; margin-bottom: 2px; }
.feat-item p { font-size: 13px; color: var(--gray-500); }

/* ===== SECTION ===== */
.section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); }
.view-all { color: var(--accent); font-weight: 600; font-size: 15px; transition: gap 0.2s; }
.view-all:hover { text-decoration: underline; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--gray-100); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase;
}
.product-info { padding: 18px; }
.product-info h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.product-info p { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.price { font-family: var(--font-display); font-size: 22px; color: var(--accent); font-weight: 800; }
.add-cart-btn {
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.add-cart-btn:hover { background: var(--accent); transform: scale(1.08); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a0a05 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; background: var(--accent);
  border-radius: 50%; opacity: 0.08;
}
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--primary); color: rgba(255,255,255,0.75); padding: 64px 24px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-col h4 { font-family: var(--font-display); color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col p { font-size: 14px; line-height: 1.7; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 38px; height: 38px; background: #1f1f2e; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--white);
  transition: background 0.2s;
}
.social-icon:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid #1f1f2e; max-width: 1280px; margin: 0 auto;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 12px; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a1028 100%);
  padding: 120px 24px 64px; text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 520px; margin: 0 auto; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-img { border-radius: var(--radius); overflow: hidden; background: var(--gray-100); aspect-ratio: 1; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info h1 { font-family: var(--font-display); font-size: 38px; margin-bottom: 12px; }
.product-detail-info .category-tag {
  display: inline-block; background: var(--accent); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  margin-bottom: 16px; text-transform: uppercase;
}
.product-detail-price { font-family: var(--font-display); font-size: 44px; color: var(--accent); margin: 20px 0; }
.product-detail-info p { color: var(--gray-500); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
.detail-add-btn {
  width: 100%; padding: 16px; background: var(--accent); color: var(--white);
  border: none; border-radius: 50px; font-size: 17px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s;
  font-family: var(--font-body);
}
.detail-add-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; background: var(--white); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; box-shadow: var(--shadow); }
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item-name { font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; }
.cart-item-price { color: var(--accent); font-weight: 700; }
.qty-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--gray-200); background: var(--white); border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.cart-summary { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.cart-summary h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 15px; }
.summary-total { border-top: 1px solid var(--gray-200); padding-top: 16px; font-weight: 700; font-size: 18px; }
.checkout-btn { width: 100%; margin-top: 20px; padding: 14px; background: var(--accent); color: var(--white); border: none; border-radius: 50px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s; }
.checkout-btn:hover { opacity: 0.88; }
.empty-cart { text-align: center; padding: 80px 20px; }
.empty-cart p { font-size: 18px; color: var(--gray-500); margin-bottom: 24px; }

/* ===== ABOUT ===== */
.about-story { max-width: 760px; margin: 0 auto; }
.about-story p { font-size: 17px; color: var(--gray-500); line-height: 1.85; margin-bottom: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; gap: 16px; }
.value-icon { width: 48px; height: 48px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.value-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--gray-500); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow); }
.team-avatar { font-size: 56px; margin-bottom: 16px; }
.team-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.team-card p { color: var(--accent); font-size: 14px; font-weight: 600; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 48px; color: var(--white); margin-bottom: 4px; }
.stats-bg { background: var(--primary); padding: 60px 24px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-item h3 { font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--gray-500); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 15px; font-family: var(--font-body);
  background: var(--gray-100); transition: border-color 0.2s;
  outline: none; color: var(--primary);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: none; }
.submit-btn {
  width: 100%; padding: 14px; background: var(--accent); color: var(--white);
  border: none; border-radius: 50px; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body); transition: opacity 0.2s;
}
.submit-btn:hover { opacity: 0.88; }
.success-msg { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; padding: 20px; border-radius: 10px; text-align: center; font-weight: 600; }
.faq-item { background: var(--white); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow); }
.faq-item h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--gray-500); }

/* ===== PRIVACY ===== */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-content h2 { font-family: var(--font-display); font-size: 24px; margin: 40px 0 12px; }
.privacy-content p, .privacy-content li { font-size: 16px; color: var(--gray-500); line-height: 1.8; margin-bottom: 12px; }
.privacy-content ul { padding-left: 24px; }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 20px; border: 1.5px solid var(--gray-200); background: var(--white); border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); color: var(--primary); }
.filter-btn.active, .filter-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--primary); color: var(--white);
  padding: 14px 24px; border-radius: 10px; font-weight: 600; font-size: 15px;
  transform: translateY(20px); opacity: 0; transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--primary); flex-direction: column; padding: 20px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid #1f1f2e; }
  .hamburger { display: flex; }
  .features-bar { grid-template-columns: 1fr 1fr; }
  .feat-item { border-right: none; border-bottom: 1px solid #1f1f2e; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .features-bar .feat-item:nth-child(even) { border-right: none; }
}
@media (max-width: 480px) {
  .features-bar { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}



.fancy-text {
    color: #ff6347;     
    font-size: 24px;       
    font-family: 'Arial', sans-serif; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); 
    letter-spacing: 1px;   
}