/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 70px; 
  font-family: 'Arial', sans-serif;
}

/* ===== HEADER ===== */
.brand-header {
  width: 100%;
  height: 70px;
  background: black; 
  color: #fff;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
}


/* LOGO */
.brand-header .logo {
  font-size: 32px; 
  font-weight: 900;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00ffb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
  text-shadow: 0 0 5px rgba(0,198,255,0.7), 0 0 10px rgba(0,198,255,0.5);
}




/* Neon Glow Hover Effect */
.brand-header .logo:hover {
  transform: scale(1.15);
  text-shadow: 
    0 0 5px rgba(0,198,255,0.8), 
    0 0 10px rgba(0,198,255,0.6), 
    0 0 20px rgba(0,255,179,0.6), 
    0 0 30px rgba(0,198,255,0.5);
}

/* Animated underline */
.brand-header .logo::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #00ffb3; /* Neon underline */
  border-radius: 2px;
  transition: width 0.4s ease, background 0.4s ease;
  margin-top: 6px;
}

.brand-header .logo:hover::after {
  width: 100%;
  background: linear-gradient(90deg, #00c6ff, #00ffb3, #0072ff);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brand-header .logo {
    font-size: 26px; 
    letter-spacing: 1.5px;
    text-shadow: 0 0 4px rgba(0,198,255,0.6), 0 0 8px rgba(0,198,255,0.4);
  }
}


/* SEARCH AREA */
.search-area {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-area input {
  padding: 8px 12px;
  border-radius: 25px;
  border: none;
  outline: none;
  width: 200px;
  font-size: 14px;
  transition: all 0.3s;
}

.search-area input:focus {
  width: 240px;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.search-area .search-btn {
  padding: 8px 12px;
  background: #fff;
  color: #1428A0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}

.search-area .search-btn:hover {
  background: #ffcc00;
  color: #111;
}





/* ================== NAVIGATION ================== */
/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 20px;
  left: 0;
  background: black;
  width: 180px;
  border-radius: 8px;
  display: none;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown-menu li {
  padding: 10px 20px;
  transition: all 0.3s;
}

.dropdown-menu li a {
  color: #fff;
  text-decoration: none;
}

.dropdown-menu li:hover {
  background: black;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* MOBILE MENU ICON */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
}


.menu-icon:hover {
  color: #ffcc00;
}

/* Main nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Nav links style */
.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect for links */
.nav-links li a:hover {
  color: #ffcc00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255,204,0,0.4);
}

/* Dropdown container */
.nav-links li.dropdown {
  position: relative;
}

/* Dropdown button */
.nav-links li .dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* Optional arrow styling */
.nav-links li .dropbtn::after {
  content: " ▼";
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s;
}

/* Rotate arrow on hover */
.nav-links li.dropdown:hover .dropbtn::after {
  transform: rotate(-180deg);
}

/* Dropdown content */
.nav-links li .dropdown-content {
  display: none;
  position: absolute;
  top: 90%;
  left: 0;
  background-color: black;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show dropdown on hover with smooth animation */
.nav-links li.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown links style */
.nav-links li .dropdown-content li a {
  display: block;
  padding: 10px 20px;
  color: white;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Dropdown hover effect */
.nav-links li .dropdown-content li a:hover {
  background: rgb(57, 50, 13);
  color: white;
}

/* Mobile menu icon */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  padding: 5px;
  transition: 0.3s;
}

.menu-icon:hover {
  color: #ffcc00;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: black;
    padding: 20px 0;
    text-align: center;
    gap: 15px;
    transition: 0.4s;
    border-radius: 0 0 15px 15px;
  }

  .nav-links.show {
    left: 0;
  }

  .nav-links li a {
    padding: 10px 0;
  }

  .nav-links li .dropdown-content {
    position: static;
    opacity: 1;
    transform: translateY(0);
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-links li .dropdown-content li a {
    color: #fff;
  }

  .menu-icon {
    display: block;
  }
}


/* Search Suggestions */
.suggestions-list {
  position: absolute;
  top: 40px; /* below input */
  left: 0;
  width: 100%;
  background: #fff;
  color: #111;
  border-radius: 6px;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
}

.suggestions-list li {
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.suggestions-list li:hover {
  background: #1428A0;
  color: #fff;
}

/* Mobile adjustment */
@media(max-width:768px){
  .search-area input {
    width: 120px;
  }
}

/* Hover Effect */
#showRewardedAd:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 123, 255, 0.35);
}

/* Active / Click Effect */
#showRewardedAd:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Focus (Keyboard Navigation) */
#showRewardedAd:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #showRewardedAd {
        padding: 14px 28px;   
        font-size: 15px;      
        border-radius: 10px; 
        width: 80%;           
        max-width: 300px;
    }
}

/* Small Mobile (Phones <480px) */
@media (max-width: 480px) {
    #showRewardedAd {
        padding: 12px 24px;
        font-size: 14px;
        width: 90%; 
    }
}

.brand-footer {
  background: black; 
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffcc00; 
}

.footer-section p, 
.footer-section li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffcc00;
}

/* Footer Social Column */
.footer-column.social {
    background: linear-gradient(135deg, #111, #222);
    padding: 20px 15px;
    margin: 0;          
    color: #fff;            
    text-align: center;
    }

.footer-column.social h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;           
    flex-wrap: wrap;      
}

/* Each Social Link */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Icon Images */
.social-link img {
    width: 60px;              
    height: 50px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effect */
.social-link:hover img {
    transform: scale(1.2);
    filter: brightness(1.5) invert(1);
}

/* Platform-specific hover effects (optional) */
.social-link[title="Facebook"]:hover img { filter: hue-rotate(210deg) brightness(1.5) invert(1); }
.social-link[title="Twitter"]:hover img { filter: hue-rotate(180deg) brightness(1.5) invert(1); }
.social-link[title="Instagram"]:hover img { filter: saturate(1.5) brightness(1.5) invert(1); }
.social-link[title="YouTube"]:hover img { filter: hue-rotate(0deg) brightness(1.5) invert(1); }

/* Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
    }
    .social-link img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    .social-link img {
        width: 24px;
        height: 24px;
    }
}



/* ===== CARDS SECTION ===== */
.brand-mobile-cards {
  padding: 30px 10px; 
  max-width: 1000px;  
  margin: auto;
  font-family: 'Arial', sans-serif;
}

.section-title {
  font-size: 22px;  
  color: #111;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  justify-items: center;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 220px; 
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.card-content {
  padding: 10px 8px;
}

.card-content h3 {
  font-size: 15px;
  margin-bottom: 5px;
  color: #111;
}

.card-content p {
  font-size: 12px;
  color: #555;
  margin-bottom: 6px;
}

.card-content .price {
  font-size: 14px;
  font-weight: 700;
  color: #1428A0;
}

/* CARD BUTTONS */
.card-buttons {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin-top: 8px;
}

.card-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 5px 0;  
  border-radius: 5px;
  font-size: 12px; 
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

/* View Spec Button */
.btn.view-spec {
  background: #f1f1f1;
  color: #111;
}

.btn.view-spec:hover {
  background: #1428A0;
  color: #fff;
}

/* Buy Now Button */
.btn.buy-now {
  background: #1428A0;
  color: #fff;
}

.btn.buy-now:hover {
  background: #0d1d6b;
  transform: translateY(-1.5px);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  margin: 6% auto;
  padding: 15px 20px;    
  border-radius: 8px;
  max-width: 360px;      
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }

  .card-buttons {
    flex-direction: column;
  }

  .card-buttons .btn {
    width: 100%;
  }
}

/*Ticker with mobile responsive-----*/

.brand-ticker {
  background: #f2f2f2; 
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.ticker-wrapper {
  overflow: hidden;
  position: relative;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-size: 16px;
  font-weight: 600;
  color: #1428A0; 
}

.ticker span {
  margin-right: 50px;
}

/* Animation */
@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Mobile Responsive */
@media(max-width:768px){
  .ticker {
    font-size: 14px;
  }
  .ticker span {
    margin-right: 30px;
  }
}









/* ===== PAGE LAYOUT ===== */
.page-layout {
  display: flex;
  gap: 20px;
  padding: 20px;
}

/* ===== ADS SIDEBAR ===== */
.ads-sidebar {
  width: 300px;
  background: white;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.ads-sidebar h3 {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

/* AD BOX */
.ad-box {
  background: white;
  height: 250px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
  border-radius: 8px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  flex: 1;
}

/* ===== GO BACK BUTTON ===== */
.go-back-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin-bottom: 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
}


.go-back-btn:hover {
  background: #333;
}





/* ===== MOBILE FIX ===== */
@media (max-width: 900px) {

  /* ADS SIDEBAR HIDE ON MOBILE */
  .ads-sidebar {
    display: none;
  }

  /* PAGE FULL WIDTH */
  .page-layout {
    flex-direction: column;
    padding: 12px;
  }

  /* GO BACK CENTER ON MOBILE */
  .go-back-btn {
    width: 100%;
    text-align: center;
  }
}


