



/* ROOT */
:root {
  --primary: #131921;
  --accent: #f08804;
  --sale: #ff3c00;
  --bg: #f3f3f3;
  --white: #ffffff;
  --text: #111827;
  --light-text: #6b7280;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* SCROLL */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--accent);
  z-index: 999;
}

/* TOP BAR */
.top-bar {
  background: var(--sale);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 6px 8%;
  font-size: 13px;
}

/* NAV */
.nav-main {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8%;
  gap: 15px;
  flex-wrap: wrap;
}

/* LOGO */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
.logo span {
  color: var(--accent);
}

/* CATEGORY */
.category-menu {
  position: relative;
}

.cat-btn {
  background: #232f3e;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

/* DROPDOWN */
.cat-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  width: 220px;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}

.category-menu:hover .cat-dropdown {
  display: block;
}

.cat-dropdown a,
.has-sub span {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

.cat-dropdown a:hover,
.has-sub span:hover {
  background: #f3f3f3;
}

/* SUBMENU */
.has-sub {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.has-sub:hover .sub-menu {
  display: block;
}

/* SEARCH */
.search-box {
  flex: 1;
  max-width: 400px;
  display: flex;
  background: white;
  border-radius: 5px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  border: none;
  padding: 8px;
}

.search-box button {
  background: var(--accent);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

/* RIGHT NAV */
.nav-right {
  display: flex;
  gap: 20px;
  color: white;
}

.nav-icon {
  font-size: 13px;
  text-align: center;
  cursor: pointer;
}

.nav-icon span {
  display: block;
  font-size: 11px;
}

/* CART */
.count {
  background: var(--accent);
  padding: 2px 6px;
  border-radius: 50%;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #131921, #232f3e);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  color: #ccc;
  max-width: 600px;
  margin: 10px auto;
}

/* BUTTON */
.btn {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: var(--accent);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #ff9900;
}

/* CATEGORY */
.categories {
  padding: 50px 20px;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.cat-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cat-card:hover {
  background: var(--accent);
  color: white;
}

/* PRODUCTS */
.products {
  padding: 50px 20px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sale);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 5px;
}

/* PRICE */
.price {
  font-weight: bold;
}

.price span {
  text-decoration: line-through;
  color: gray;
  font-size: 13px;
}

/* CONTACT */
.contact-section {
  padding: 60px 5%;
  background: #f8f9fb;
}

.contact-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
}

.contact-form textarea {
  height: 100px;
  margin-top: 10px;
}

.contact-form button {
  margin-top: 10px;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e65c00;
}

/* MAP */
.contact-map {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* CTA */
.cta {
  background: var(--sale);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

/* FOOTER */
.premium-footer {
  background: #0b1a2e;   /* SAME AS HEADER */
  color: #ccc;
  padding-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 8%;
}

/* HEADINGS */
.footer-col h2,
.footer-col h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS FIX (YOUR MAIN ISSUE) */
.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 5px 0;
}

.footer-col a:hover {
  color: #ff6600;
}

/* REMOVE BLUE DEFAULT LINKS */
.footer-col a:visited,
.footer-col a:active {
  color: #ccc;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #1f2a3a;
  font-size: 14px;
  color: #aaa;
  background: #0b1a2e;
}


/* RESPONSIVE */
@media(max-width:768px) {
  .nav-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box {
    width: 100%;
  }

  .contact {
    flex-direction: column;
  }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 12s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* LOGO */
.logo-section {
  text-align: center;
}

.logo-img {
  width: 100px;
  margin-top: 5px;
}

/* SEARCH */
.search-box {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 10px;
  outline: none;
  width: 200px;
}

.search-box button {
  background: #ff4d4d;
  border: none;
  padding: 10px;
  color: white;
  cursor: pointer;
}

/* ICONS */
.nav-icon {
  cursor: pointer;
  text-align: center;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-icon:hover {
  transform: scale(1.1);
  color: #ff4d4d;
}

/* CART COUNT */
.count {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

/* SLIDER */
.header-slider {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: 1s;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* HEADER */
.main-header {
  background: #0b1a2e;
  color: #fff;
}

/* TOP BAR */
.top-bar {
  background: #ff6600;
  padding: 5px 0;
  font-size: 14px;
  overflow: hidden;
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 12s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* NAV */
.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
}

/* LOGO */
.logo-img {
  height: 65px;
  width: auto;
}

/* SEARCH */
.search-box {
  display: flex;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 8px;
  outline: none;
}

.search-box button {
  background: #ff6600;
  border: none;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
}

/* NAV RIGHT */
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-icon {
  text-align: center;
  cursor: pointer;
  font-size: 14px;
}

/* ===================== */
/* 🔥 SLIDER FIX */
/* ===================== */

.header-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000; /* FIX invisible images */
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* EACH SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
}

/* OPTIONAL OVERLAY */
.header-slider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.3);
}