/* ===== RESET ===== */
body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  font-family: Arial, sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  color: #222;
}

/* ===== FULL WIDTH ===== */
.container,
.container-fluid,
#content,
header,
footer {
  width: 100%;
  max-width: 100% !important;
  padding: 0 !important;
}

.row {
  margin: 0 !important;
}

/* ===== HEADER ===== */
.amazon-pro {
  background: #131921;
  color: #fff;
}

.top-bar {
  background: #131921;
  padding: 12px 20px;
  height: 70px;
  display: flex;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 35px;
  filter: brightness(0) invert(1);
}

/* ===== SEARCH ===== */
.search-box {
  display: flex;
  width: 100%;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  position: relative;
}

.search-box:focus-within {
  border: 2px solid #f90;
}

.search-category {
  border: none;
  background: #f3f3f3;
  padding: 0 12px;
  font-size: 13px;
}

.search-box input {
  flex: 1;
  border: none;
  padding: 0 15px;
  font-size: 14px;
}

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

.search-btn {
  width: 55px;
  background: #febd69;
  border: none;
  cursor: pointer;
}

.search-btn:hover {
  background: #f3a847;
}

/* ===== LIVE SEARCH ===== */
#search-result {
  position: absolute;
  width: 100%;
  top: 45px;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 99999;
  border-radius: 6px;
  display: none;
}

.search-item {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.search-item img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.search-item .title {
  font-size: 14px;
  color: #333;
}

.search-item .price {
  font-size: 13px;
  color: #f90;
}

.search-item:hover {
  background: #f5f5f5;
}

/* ===== RIGHT HEADER ===== */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  height: 70px;
}

/* ACCOUNT */
.account {
  position: relative;
}

.account a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

/* FIXED DROPDOWN (ONLY ONE VERSION) */

.account:hover .dropdown-menu {
  display: block;
}

.account .dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
}

.account .dropdown-menu a:hover {
  background: #f5f5f5;
  color: #ff9900;
}

/* ORDERS */
.orders {
  font-size: 12px;
  color: #fff;
}

/* CART */
.cart {
  color: #fff;
  text-decoration: none;
}

/* ===== MENU ===== */
.menu-bar {
  background: #232f3e;
  position: relative;
  z-index: 9999;
}

.menu-bar #menu .navbar-nav > li > a {
  color: #fff;
  padding: 10px 15px;
}

.menu-bar #menu .navbar-nav > li > a:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== MEGA MENU FIX ===== */
#menu .dropdown {
  position: relative;
}

#menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  right: auto !important;
  z-index: 99999;

  background: #fff;
  border-radius: 6px;
  padding: 15px;
  min-width: 250px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

#menu .dropdown-menu a {
  color: #222;
  font-size: 14px;
}

#menu .dropdown-menu a:hover {
  color: #f90;
}

/* ===== PRODUCT ===== */
.product-thumb {
  background: #fff;
  transition: 0.3s;
}

.product-thumb:hover {
  transform: translateY(-5px);
}

.product-thumb h4 a {
  font-size: 15px;
  color: #222;
  text-decoration: none;
}

.price {
  color: #f90;
}

/* ===== FOOTER ===== */
.footer-new {
  background: #111;
  color: #ccc;
  padding: 50px 20px;
}

.footer-new h5 {
  color: #fff;
}

.footer-new ul {
  list-style: none;
  padding: 0;
}

.footer-new ul li a {
  color: #ccc;
}

.footer-new ul li a:hover {
  color: #fff;
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  z-index: 999;
}

/* ===== FIXES ===== */
#search,
#top {
  display: none !important;
}

.common-home .swiper-viewport {
  z-index: 1 !important;
}

header,
.amazon-pro,
.top-bar {
  overflow: visible !important;
}

/* ===== COLOR VARIABLES ===== */
:root {
  --primary: #131921;
  --secondary: #232f3e;
  --accent: #ff9900;
  --accent-light: #ffb84d;
  --bg-light: #f5f5f5;
  --text-dark: #222;
  --text-light: #fff;
}

/* ===== BODY ===== */
body {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* ===== HEADER ===== */
.amazon-pro,
.top-bar {
  background: var(--primary) !important;
  color: var(--text-light);
}

/* ===== MENU ===== */
.menu-bar {
  background: var(--secondary) !important;
}

/* MENU LINKS */
.menu-bar a {
  color: var(--text-light) !important;
}

.menu-bar a:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== SEARCH ===== */
.search-box {
  border: 2px solid transparent;
}

.search-box:focus-within {
  border-color: var(--accent);
}

.search-btn {
  background: var(--accent);
  color: #000;
}

.search-btn:hover {
  background: var(--accent-light);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--accent);
  border: none;
}

.btn-primary:hover {
  background: var(--accent-light);
}

/* ===== LINKS ===== */
a {
  color: var(--text-dark);
}

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

/* ===== DROPDOWN ===== */
.dropdown-menu {
  background: #fff;
  border-radius: 6px;
}

.dropdown-menu a {
  color: var(--text-dark);
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--accent);
}

/* ===== PRODUCT CARD ===== */
.product-thumb {
  border-radius: 6px;
  overflow: hidden;
  transition: 0.3s;
}

.product-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* PRICE */
.price {
  color: var(--accent);
  font-weight: bold;
}

/* ===== FOOTER ===== */
.footer-new {
  background: #111;
  color: #ccc;
}

.footer-new h5 {
  color: #fff;
}

.footer-new a:hover {
  color: var(--accent);
}

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  background: #25D366;
}

/* ===== REMOVE BOOTSTRAP COLORS ===== */
.bg-primary,
.bg-secondary {
  background: none !important;
}

/* ===== MEGA MENU ===== */
#menu .dropdown-menu {
  background: #fff;
}

#menu .dropdown-menu a {
  color: #222;
}

#menu .dropdown-menu a:hover {
  color: var(--accent);
}

/* ===== FIX MEGA MENU VISIBILITY ===== */

#menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999999 !important;

  background: #ffffff !important;
  opacity: 1 !important;

  min-width: 250px;
  padding: 15px;
  border-radius: 6px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* REMOVE FADE / OVERLAY ISSUE */
.common-home .swiper-viewport,
.swiper-viewport {
  z-index: 1 !important;
  position: relative;
}

/* MENU ALWAYS ABOVE */
.menu-bar {
  position: relative;
  z-index: 99999 !important;
}

/* HEADER OVERFLOW FIX */
header,
.amazon-pro,
.top-bar {
  overflow: visible !important;
}

/* TEXT FIX */
#menu .dropdown-menu a {
  color: #222 !important;
}

#menu .dropdown-menu a:hover {
  color: #ff9900 !important;
}

/* ===== ACCOUNT DROPDOWN FINAL FIX ===== */

.account {
  position: relative;
}

/* PERFECT POSITION */
.account .dropdown-menu {
  position: absolute;
  top: 100%;   /* ðŸ‘ˆ header ke niche */
  right: 0;
  left: auto;

  margin-top: 8px; /* thoda gap */

  z-index: 999999;

  display: none;
  background: #fff;
  min-width: 180px;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

/* SHOW ON HOVER */
.account:hover .dropdown-menu {
  display: block;
}

/* LINKS */
.account .dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333;
}

.account .dropdown-menu a:hover {
  background: #f5f5f5;
  color: #ff9900;
}

/* REMOVE ALL GREY BACKGROUNDS */
.product-thumb,
.swiper-viewport,
#common-home,
main {
  background: #ffffff !important;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* ===== FOOTER DESIGN ===== */
.footer-new {
  background: #0f172a;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-new h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-new p,
.footer-new li,
.footer-new a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.footer-new a:hover {
  color: #fff;
}

.footer-new ul {
  list-style: none;
  padding: 0;
}

.footer-top {
  margin-bottom: 20px;
}

.footer-new hr {
  border-color: rgba(255,255,255,0.1);
}

.footer-powered {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: #aaa;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #25D366;
}

/* PAYMENT ICONS */
.payment-icons img {
  height: 30px;
  margin: 5px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.payment-icons img:hover {
  filter: none;
  opacity: 1;
}
.footer-top .col-md-3 {
  margin-bottom: 20px;
}

/* ===== FINAL FOOTER FIX ===== */

.footer-new {
  background: linear-gradient(to right, #0b1a2f, #020b1a);
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-new .container-fluid {
  max-width: 1400px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ROW FIX */
.footer-new .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* COLUMN FIX */
.footer-new .col-md-3 {
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-bottom: 20px;
}

/* TOP SPACING */
.footer-top {
  padding-top: 20px;
}

/* TEXT */
.footer-new h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-new p,
.footer-new li,
.footer-new a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.footer-new a:hover {
  color: #fff;
}

/* SOCIAL */
.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
}

.social-icons a:hover {
  color: #25D366;
}

/* PAYMENT */
.payment-icons img {
  height: 30px;
  margin: 5px;
}

/* COPYRIGHT */
.footer-powered {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* GRID FIX */
.footer-top .col-md-3 {
  margin-bottom: 25px;
}

/* MOBILE FIX */
@media(max-width:768px){
  .footer-new {
    text-align: center;
  }
}

/* REMOVE BOTTOM WHITE SPACE */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #ffffff;   /* âœ… WHITE */
}

/* MAIN CONTAINER FIX */
#container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* PUSH FOOTER DOWN */
main {
  flex: 1;
}

/* FOOTER FIX */
.footer-new {
  margin-bottom: 0 !important;
}

.footer-new {
  background: linear-gradient(to right, #0b1a2f, #020b1a);
  color: #fff;
  padding: 30px 20px 20px;   /* ðŸ”¥ top padding fix */
}

.footer-top {
  padding-top: 80px;   /* extra spacing */
}

.footer-powered {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-top {
  padding-top: 20px;
}

.footer-new {
  padding: 30px 0;
}

.footer-new .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.footer-new .col-md-3 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
/* ===== AMAZON FOOTER ===== */

.amazon-footer {
  background: #232f3e;
  color: #ddd;
  font-size: 14px;
}

/* TOP BAR */
.footer-top-bar {
  background: #37475a;
  text-align: center;
  padding: 12px;
  cursor: pointer;
}

.footer-top-bar:hover {
  background: #485769;
}

/* MAIN AREA */
.footer-main {
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  width: 22%;
  min-width: 200px;
}

.footer-col h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

/* LINKS */
.footer-col a {
  display: block;
  color: #ddd;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #3a4553;
  text-align: center;
  padding: 20px;
}

.footer-logo {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===============================
   GLOBAL RESET
=================================*/
* {
  box-sizing: border-box;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ===============================
   CONTAINER FIX
=================================*/
.container {
  max-width: 1200px;
  margin: auto;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* ===============================
   ROW FIX (IMPORTANT)
=================================*/
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ===============================
   HEADER FIX
=================================*/
header {
  width: 100%;
  background: #0f172a;
}

/* ===============================
   MENU BAR FIX
=================================*/
.navbar {
  border-radius: 0 !important;
}

.nav > li > a {
  color: #fff !important;
  padding: 12px 15px;
}

/* ===============================
   MEGA MENU FIX
=================================*/
.dropdown-menu {
  background: #ffffff !important;
  color: #000 !important;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-menu a {
  color: #000 !important;
}

/* ===============================
   SLIDER FIX
=================================*/
.swiper-viewport {
  margin: 0 auto;
  border: none !important;
}

/* ===============================
   LEFT COLUMN FIX (IMPORTANT)
=================================*/
#column-left {
  width: 20%;
  float: left;
  padding: 10px;
}

#content {
  width: 80%;
  float: right;
  padding: 10px;
}

/* MOBILE FIX */
@media(max-width:768px){
  #column-left,
  #content {
    width: 100%;
    float: none;
  }
}

/* ===============================
   CATEGORY LIST FIX
=================================*/
.list-group-item {
  border: none;
  padding: 8px 10px;
}

.list-group-item a {
  color: #333;
}

/* ===============================
   PRODUCT CARD FIX
=================================*/
.product-thumb {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  transition: 0.3s;
}

.product-thumb:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===============================
   FOOTER AMAZON STYLE
=================================*/
footer.footer-amazon {
  background: #1f2937;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-amazon .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-amazon .footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-amazon h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-amazon ul {
  list-style: none;
  padding: 0;
}

.footer-amazon ul li {
  margin-bottom: 8px;
}

.footer-amazon ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-amazon ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 15px;
}

/* ===============================
   BACK TO TOP
=================================*/
.back-to-top {
  background: #37475a;
  color: #fff;
  text-align: center;
  padding: 12px;
  cursor: pointer;
}

.back-to-top:hover {
  background: #485769;
}

/* ===============================
   WHATSAPP BUTTON
=================================*/
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 22px;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 999;
}

/* HERO */
.hero-banner {
  margin-bottom: 20px;
}

/* CATEGORY GRID */
.category-grid-full {
  margin: 30px auto;
}

.cat-item {
  text-align: center;
  margin-bottom: 20px;
}

.cat-item img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.cat-item:hover img {
  transform: scale(1.05);
}

.cat-item span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* MAIN CONTENT */
.main-content {
  margin-top: 20px;
}

/* PRODUCT FIX */
.product-layout {
  margin-bottom: 25px;
}

#content h3 {
  text-align: center;
  position: relative;
}

#content h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff6600;
  display: block;
  margin: 8px auto 0;
}

/*final css code jayant*/

/* =====================
   ROOT COLORS
===================== */
:root {
  --primary: #131921;
  --secondary: #232f3e;
  --accent: #ff9900;
  --bg: #ffffff;
  --text: #222;
}

/* =====================
   RESET
===================== */
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* =====================
   CONTAINER FIX
===================== */
.container {
  max-width: 1200px;
  margin: auto;
}

.row {
  margin: 0 !important;
}

/* =====================
   HEADER
===================== */
.amazon-pro {
  background: var(--primary);
  color: #fff;
}

.menu-bar {
  background: var(--secondary);
}

/* =====================
   SEARCH
===================== */
.search-box {
  display: flex;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.search-box input {
  flex: 1;
  border: none;
  padding: 0 10px;
}

.search-btn {
  background: var(--accent);
  border: none;
  width: 50px;
}

/* =====================
   DROPDOWN FIX
===================== */
.dropdown-menu {
  background: #fff !important;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* =====================
   PRODUCT CARD
===================== */
.product-thumb {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  transition: 0.3s;
}

.product-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price {
  color: var(--accent);
  font-weight: bold;
}

/* =====================
   HERO
===================== */
.hero-banner {
  margin-bottom: 20px;
}

/* =====================
   CATEGORY GRID
===================== */
.category-grid-full {
  margin: 30px auto;
}

.cat-item {
  text-align: center;
  margin-bottom: 20px;
}

.cat-item img {
  width: 100%;
  border-radius: 10px;
}

.cat-item span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* =====================
   FEATURED HEADING
===================== */
#content h3 {
  text-align: center;
}

#content h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent);
  display: block;
  margin: 8px auto;
}

/* =====================
   FOOTER (FINAL)
===================== */
.footer-new {
  background: linear-gradient(to right, #0b1a2f, #020b1a);
  color: #ccc;
  padding: 40px 20px;
}

.footer-new h5 {
  color: #fff;
}

.footer-new a {
  color: #ccc;
}

.footer-new a:hover {
  color: #fff;
}

.footer-powered {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

/* =====================
   WHATSAPP
===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* =====================
   BACK TO TOP
===================== */
.back-to-top {
  background: #37475a;
  color: #fff;
  text-align: center;
  padding: 10px;
  cursor: pointer;
}

/* =====================
   MOBILE
===================== */
@media(max-width:768px){
  .cat-item {
    width: 50%;
  }
}

/* =========================
   STICKY HEADER AMAZON STYLE
========================= */
.amazon-pro {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #131921;
}

/* MENU bhi sticky rahe */
.menu-bar {
  position: sticky;
  top: 70px; /* header height */
  z-index: 9998;
}

/* Smooth effect */
.amazon-pro,
.menu-bar {
  transition: all 0.3s ease;
}

/* SCROLL EFFECT */
.scrolled-header {
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* =========================
   NEXT LEVEL PRODUCT CARD
========================= */

.product-thumb {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.product-thumb .image {
  position: relative;
  text-align: center;
}

.product-thumb .image img {
  max-height: 190px;
  object-fit: contain;
  transition: 0.3s;
}

.product-thumb:hover .image img {
  transform: scale(1.05);
}

/* BADGE (SALE / NEW) */
.product-thumb .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3d00;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* WISHLIST ICON */
.product-thumb .wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
}

.product-thumb .wishlist-btn:hover {
  color: #ff3d00;
}

/* TITLE */
.product-thumb h4 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  height: 40px;
  overflow: hidden;
}

.product-thumb h4 a {
  color: #111;
  text-decoration: none;
}

/* PRICE */
.product-thumb .price {
  font-size: 17px;
  font-weight: 700;
  color: #ff6a00;
}

/* OLD PRICE */
.product-thumb .price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 13px;
  margin-left: 5px;
}

/* RATING */
.product-thumb .rating {
  font-size: 12px;
  color: #ffc107;
  margin: 5px 0;
}

/* HOVER BUTTONS */
.product-thumb .hover-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.product-thumb:hover .hover-actions {
  bottom: 15px;
}

/* BUTTON STYLE */
.product-thumb .hover-actions button {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.product-thumb .hover-actions button:hover {
  background: #ff6a00;
}

/* =========================
   PRODUCT PAGE PRO UI
========================= */

#product-info {
  margin-top: 20px;
}

/* IMAGE SECTION */
.image img {
  border-radius: 12px;
  transition: 0.3s;
}

.image img:hover {
  transform: scale(1.05);
}

/* TITLE */
#product-info h1 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

/* PRICE BOX */
.price-new {
  font-size: 26px;
  font-weight: 700;
  color: #ff6a00;
}

.price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 16px;
}

/* STOCK */
.list-unstyled li {
  font-size: 14px;
  color: #555;
}

/* RATING */
.rating i {
  color: #ffc107;
}

/* BUTTON GROUP */
#product .btn-primary {
  background: #ff6a00;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

#product .btn-primary:hover {
  background: #e65c00;
}

/* QUANTITY */
#input-quantity {
  max-width: 60px;
  text-align: center;
}

/* OPTION BOX */
.form-select,
.form-control {
  border-radius: 8px;
}

/* TABS */
.nav-tabs {
  border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
  color: #555;
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: #ff6a00;
  border-color: #ff6a00;
}

/* DESCRIPTION */
#tab-description {
  line-height: 1.7;
  font-size: 14px;
}

/* RELATED PRODUCTS */
.product-thumb {
  border-radius: 12px;
}

.product-buy-box {
  display: flex;
  gap: 10px;
}

.product-buy-box button {
  flex: 1;
  height: 45px;
  font-size: 15px;
}

.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.sticky-buy button {
  background: #ff6a00;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
}

.image .img-thumbnail {
  border-radius: 6px;
  transition: 0.3s;
}

.image .img-thumbnail:hover {
  border-color: #ff6a00;
}

/* =========================
   6 PRODUCTS PER ROW
========================= */

@media (min-width: 1200px) {
  .product-layout {
    width: 16.66% !important;
    float: left;
  }
}

/* Tablet */
@media (max-width: 1199px) {
  .product-layout {
    width: 25%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-layout {
    width: 50%;
  }
}

/* FEATURED TITLE CENTER */
.featured-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0;
}

/* PRODUCT GRID SPACING */
.product-thumb {
  border-radius: 10px;
  transition: 0.3s;
}

.product-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
/* CATEGORY GRID 6 */
.custom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .custom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== STICKY HEADER ===== */
#header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #0f172a;
}

/* mobile header spacing fix */
@media (max-width: 768px) {
  #header {
    padding-bottom: 10px;
  }
}

/* ===== MOBILE APP FOOTER ===== */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
}

/* icons */
.mobile-footer a {
  text-align: center;
  color: #444;
  font-size: 12px;
  text-decoration: none;
}

.mobile-footer i {
  display: block;
  font-size: 20px;
  margin-bottom: 3px;
}

/* active color */
.mobile-footer a:hover {
  color: #ff3b3b;
}

/* desktop pe hide */
@media (min-width: 768px) {
  .mobile-footer {
    display: none;
  }
}

/* bottom space avoid overlap */
body {
  padding-bottom: 70px;
}
/* MOBILE पर amazon header hide */
@media (max-width: 768px) {
  .amazon-pro {
    display: none;
  }
}

/* ===== APP HEADER ===== */
.app-header {
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  padding: 10px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* TOP BAR */
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MENU */
.app-menu i {
  font-size: 20px;
}

/* LOGO */
.app-logo img {
  height: 28px;
}

/* ICONS */
.app-icons i {
  font-size: 18px;
  margin-left: 15px;
}

/* SEARCH */
.app-search {
  margin-top: 10px;
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.app-search input {
  flex: 1;
  border: none;
  padding: 10px;
  outline: none;
}

.app-search button {
  border: none;
  background: transparent;
  padding: 10px;
}

/* DESKTOP HIDE */
@media (min-width: 768px) {
  .app-header {
    display: none;
  }
}
@media (max-width: 768px) {
  .menu-bar {
    display: none;
  }
}

/* ===== APP HEADER ===== */
.app-header {
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  padding: 10px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-logo img {
  height: 28px;
}

.app-icons i,
.app-menu i {
  font-size: 20px;
}

.app-icons i {
  margin-left: 15px;
}

/* SEARCH */
.app-search {
  margin-top: 10px;
  display: flex;
  background: #fff;
  border-radius: 12px;
}

.app-search input {
  flex: 1;
  border: none;
  padding: 10px;
}

.app-search button {
  border: none;
  background: transparent;
  padding: 10px;
}

/* ===== SIDE MENU ===== */
.side-menu {
  position: fixed;
  left: -260px;
  top: 0;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.3s;
}

.side-menu.active {
  left: 0;
}

.menu-header {
  padding: 15px;
  background: #ff3b3b;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu ul li a {
  display: block;
  padding: 12px;
  color: #333;
  text-decoration: none;
}

/* OVERLAY */
#menu-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  z-index: 9998;
}

#menu-overlay.active {
  display: block;
}

/* ===== BOTTOM NAV ===== */
.mobile-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-footer a {
  text-align: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

.mobile-footer i {
  display: block;
  font-size: 20px;
}

/* SPACE FIX */
body {
  padding-bottom: 70px;
}

/* HIDE DESKTOP */
@media (min-width: 768px) {
  .app-header,
  .mobile-footer {
    display: none;
  }
}
/* MOBILE FOOTER FIX */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  z-index: 9999; /* HIGH PRIORITY */
  border-top: 1px solid #ddd;
}

/* LINKS FIX */
.mobile-footer a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ICON */
.mobile-footer i {
  font-size: 18px;
  margin-bottom: 2px;
}

/* ACTIVE */
.mobile-footer a:active {
  color: #ff3b3b;
}

/* BODY SPACE (IMPORTANT) */
body {
  padding-bottom: 70px;
}

/* WHATSAPP FIX */
.whatsapp-btn {
  z-index: 999; /* LOWER than footer */
}
/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.3s;
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

/* HEADER */
.menu-header {
  background: #ff3b3b;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

/* CATEGORY ITEMS */
.menu-links {
  padding: 10px;
}

.menu-item a {
  display: block;
  padding: 12px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* SUB CATEGORY */
.submenu a {
  display: block;
  padding: 10px 20px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 99998;
  display: none;
}

#menu-overlay.active {
  display: block;
}
/* MOBILE HEADER */
.app-header {
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  padding: 10px;
  color: #fff;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-icons a {
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
}

.app-search {
  display: flex;
  margin-top: 10px;
}

.app-search input {
  flex: 1;
  padding: 10px;
  border-radius: 8px 0 0 8px;
  border: none;
}

.app-search button {
  padding: 10px;
  background: #fff;
  border: none;
  border-radius: 0 8px 8px 0;
}

/* DRAWER */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.3s;
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

.menu-header {
  background: #ff3b3b;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
}

.menu-item a {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

.submenu {
  display: none;
  background: #f8f8f8;
}

.submenu a {
  padding: 10px 20px;
  display: block;
  color: #666;
}

/* OVERLAY */
#menu-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 99998;
}

#menu-overlay.active {
  display: block;
}

.submenu {
  display: none;
  padding-left: 15px;
  background: #f9f9f9;
}

.submenu a {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: #333;
}
