
:root {
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --gray: #555555;
  --gray-light: #888888;
  --border: #e5e5e5;
  --cream: #f9f7f4;
  --white: #ffffff;
  --orange: #e85d04;
  --orange-dark: #c44d04;
  --orange-light: #ff7b2c;
  --shadow: rgba(0,0,0,0.10);
  --shadow-md: rgba(0,0,0,0.18);
  --shadow-lg: rgba(0,0,0,0.28);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

   /* NAVBAR PORTION */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 20px;
}

/* Brand PORTION  */
.nav-brand { flex-shrink: 0; }
.brand-main {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1;
}
.brand-sub {
  display: block;
  font-size: 0.62rem;
  color: var(--gray-light);
  letter-spacing: 1.5px;
  text-transform: lowercase;
}

/* Links PORTION*/
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--black);
  font-weight: 700;
}
.nav-link.active { text-decoration: underline; text-underline-offset: 3px; }

/* Actions PORTION*/
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cart-btn {
  position: relative;
  background: transparent;
  color: var(--black);
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s;
}
.cart-btn:hover { background: var(--cream); }
.cart-badge {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.show { display: flex; }

/* Hamburger PORTION */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

   /* HERO PORTION */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.40) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 560px;
  animation: fadeUp .7s ease both;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-model {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%;
  width: 45%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-model img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
}

/* Buttons PORTION */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 13px 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  transition: background .22s, transform .18s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(232,93,4,0.35);
  cursor: pointer;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.45);
}
.btn-orange.full { width: 100%; text-align: center; }

   /* SECTIONS PORTION */
.section { padding: 72px 32px; max-width: 1280px; margin: 0 auto; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 3px;
  text-align: center;
  color: var(--black);
  margin-bottom: 48px;
}
.section-title.left { text-align: left; margin-bottom: 24px; }

   /* FEATURED PRODUCTS PORTION */
.featured-section { background: var(--cream); max-width: 100%; padding: 72px 32px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--shadow-md);
}

.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.88);
  color: var(--gray);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, transform .2s;
  z-index: 2;
}
.wishlist-btn:hover { color: #e74c3c; transform: scale(1.15); }

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-add {
  background: var(--white);
  color: var(--black);
  padding: 10px 22px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  transform: translateY(12px);
  transition: transform .25s, background .2s;
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--orange); color: var(--white); }

.product-info { padding: 14px 16px; }
.product-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.stars { font-size: 0.78rem; color: #f4a225; }
.stars span { color: var(--gray); font-size: 0.75rem; }
.price { font-weight: 700; color: var(--black); font-size: 0.95rem; }
.add-cart-btn {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 10px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .8px;
  transition: background .2s;
}
.add-cart-btn:hover { background: var(--orange); }

   /* ABOUT PORTION */
.about-section { padding: 80px 32px; max-width: 100%; background: var(--white); }
.about-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img {
  position: relative;
  flex: 0 0 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 140px; height: 140px;
  background: var(--orange);
  border-radius: 8px;
  z-index: -1;
}
.about-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--orange);
  margin: 20px 0 8px;
}
.about-text p {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
}
.about-text .btn-orange { margin-top: 20px; }

   /* BEST SELLERS CAROUSEL PORTION */
.bestsellers-section { background: var(--cream); max-width: 100%; padding: 72px 32px; }
.bestsellers-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.bestsellers-track-outer { flex: 1; overflow: hidden; }
.bestsellers-track {
  display: flex;
  gap: 22px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.bs-card {
  flex: 0 0 calc(25% - 17px);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  text-align: center;
  position: relative;
  transition: transform .3s;
}
.bs-card:hover { transform: translateY(-5px); }
.bs-img { aspect-ratio: 3/4; overflow: hidden; }
.bs-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bs-card:hover .bs-img img { transform: scale(1.05); }
.bs-price { font-weight: 700; font-size: 1rem; padding: 10px 0 2px; color: var(--black); }
.bs-name { font-size: 0.82rem; color: var(--gray); padding-bottom: 12px; }
.bs-add {
  position: absolute;
  bottom: 56px; right: 10px;
  background: var(--orange);
  color: var(--white);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: scale(0.7);
}
.bs-card:hover .bs-add { opacity: 1; transform: scale(1); }

.carousel-btn {
  background: var(--white);
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--orange); color: var(--white); transform: scale(1.05); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.dot.active { background: var(--orange); transform: scale(1.3); }

   /* REVIEWS PORTION */
.reviews-section { background: var(--white); max-width: 100%; padding: 72px 32px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 2px 10px var(--shadow);
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px var(--shadow-md); }
.review-card img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px var(--shadow-md);
}
.stars-row { color: #f4a225; font-size: 0.95rem; letter-spacing: 1px; }
.review-text { font-size: 0.85rem; color: var(--gray); line-height: 1.75; font-style: italic; }
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.review-role { font-size: 0.78rem; color: var(--gray-light); }

   /* CONTACT PORTION */
.contact-section { background: var(--cream); max-width: 100%; padding: 72px 32px; }
.contact-inner {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-form-col { flex: 1; min-width: 280px; }
.contact-sub { color: var(--gray); margin-bottom: 28px; font-size: 0.93rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-info-col { flex: 0 0 300px; display: flex; flex-direction: column; gap: 22px; }
.info-block h4 { font-size: 0.92rem; font-weight: 700; color: var(--black); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.info-block h4 i { color: var(--orange); }
.info-block p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }

.social-icons { display: flex; gap: 10px; margin-top: 6px; }
.social-icons a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .15s;
}
.social-icons a:hover { background: var(--orange); transform: translateY(-2px); }

.newsletter-block {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px var(--shadow);
}
.newsletter-block h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; font-size: 1rem; margin-bottom: 4px; }
.newsletter-block p { font-size: 0.75rem; color: var(--gray-light); letter-spacing: 1px; margin-bottom: 12px; text-transform: uppercase; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.82rem;
  font-family: inherit;
}
.newsletter-row input:focus { outline: none; border-color: var(--orange); }
.newsletter-row button {
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .2s;
}
.newsletter-row button:hover { background: var(--orange); }

   /* FOOTER PORTION */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 24px 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.copyright { font-size: 0.8rem; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 1rem; transition: color .2s; }
.footer-social a:hover { color: var(--orange); }

   /* CART SIDEBAR PORTION */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px; max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 28px var(--shadow-lg);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar-header {
  background: var(--dark);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-sidebar-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; display: flex; align-items: center; gap: 10px; }
.close-cart-btn { background: transparent; color: var(--white); font-size: 1.1rem; padding: 4px 8px; border-radius: 4px; transition: background .2s; }
.close-cart-btn:hover { background: rgba(255,255,255,0.15); }

.cart-sidebar-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty-msg { text-align: center; color: var(--gray-light); margin-top: 50px; line-height: 2; font-size: 0.9rem; }

.cart-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-sidebar-item img { width: 58px; height: 58px; object-fit: cover; border-radius: 6px; }
.csi-info { flex: 1; }
.csi-info span { display: block; font-weight: 700; font-size: 0.88rem; }
.csi-info small { color: var(--orange); font-size: 0.82rem; }
.csi-controls { display: flex; align-items: center; gap: 6px; }
.csi-qbtn { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.csi-qbtn:hover { background: var(--border); }
.csi-qty { font-weight: 700; font-size: 0.9rem; min-width: 20px; text-align: center; }
.csi-remove { color: #e74c3c; background: transparent; font-size: 0.95rem; margin-left: 4px; }

.cart-sidebar-footer { padding: 16px 20px; border-top: 2px solid var(--border); }
.cart-sidebar-total { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; display: flex; justify-content: space-between; }
.cart-sidebar-total span { color: var(--orange); }
.btn-clear { width: 100%; margin-top: 8px; background: transparent; border: 1.5px solid #e74c3c; color: #e74c3c; padding: 10px; border-radius: 5px; font-weight: 700; font-size: 0.84rem; transition: background .2s, color .2s; }
.btn-clear:hover { background: #e74c3c; color: var(--white); }

   /* TOAST PORTION */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 3000;
  opacity: 0;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .32s;
  box-shadow: 0 4px 20px var(--shadow-lg);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

   /* ANIMATIONS PORTION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

   /* RESPONSIVE PORTION */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .bs-card { flex: 0 0 calc(33.33% - 15px); }
}

@media (max-width: 900px) {
  .hero-model { display: none; }
  .about-inner { flex-direction: column; }
  .about-img { flex: unset; width: 100%; }
  .about-img img { height: 320px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-card { flex: 0 0 calc(50% - 11px); }
}

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; box-shadow: 0 8px 20px var(--shadow); z-index: 800; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 18px; }

  .hero-content { padding: 40px 24px; }
  .section { padding: 50px 18px; }
  .featured-section, .about-section, .bestsellers-section, .reviews-section, .contact-section { padding: 50px 18px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; gap: 32px; }
  .contact-info-col { flex: unset; width: 100%; }
  .form-row { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .cart-sidebar { width: 100vw; }
  .bs-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 430px) {
  .products-grid { grid-template-columns: 1fr; }
}
