/* GLOBAL RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html,body{
height:100%;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#0f0f11;
color:white;
line-height:1.5;
min-height:100vh;
display:flex;
flex-direction:column;
}


/* CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* HEADER */

header{
background:#121216;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 0;
}

.logo img{
height:45px;
border-radius:8px;
}


/* NAV */

/* Update this section in your stylea.css */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Pushes logo left, home right */
  width: 100%;                   /* CRITICAL: Allows it to use the full header width */
  padding: 10px 0;               /* Adjust as needed */
}

/* Optional: Ensure nav-links stays right-aligned if you add more links */
.nav-links {
  display: flex;
  gap: 20px;
}


.logo img {
  height: 40px; /* Adjust based on your preference */
  display: block;
}

.nav-menu a {
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #d4af37;
}


/* HERO SECTION */
/* SMALL ORBIT HERO SECTION */

.category-hero{
padding:30px 20px;
display:flex;
justify-content:center;
align-items:center;
background:transparent; /* same as body color */
}

.orbit-wrapper{
position:relative;
width:220px;
height:220px;
display:flex;
justify-content:center;
align-items:center;
}

/* center text */

.center-text{
text-align:center;
z-index:2;
color:white;
}

.center-text h2{
font-size:19px;
margin-bottom:5px;
line-height:1.3;
}

.center-text p{
font-size:14px;
opacity:0.8;
}

/* orbit circles */

.orbit{
position:absolute;
width:100%;
height:100%;
border-radius:50%;
animation:rotate 18s linear infinite;
}

.orbit2{
width:280px;
height:280px;
animation-duration:25s;
}

/* icons */

.orbit span{
position:absolute;
font-size:18px;
}

.orbit span:nth-child(1){top:0; left:50%; transform:translateX(-50%);}
.orbit span:nth-child(2){right:0; top:50%; transform:translateY(-50%);}
.orbit span:nth-child(3){bottom:0; left:50%; transform:translateX(-50%);}
.orbit span:nth-child(4){left:0; top:50%; transform:translateY(-50%);}

/* rotation animation */

@keyframes rotate{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}


/* PRODUCTS SECTION */

.products-section{
padding:35px 0;
flex:1;
}

.section-title{
text-align:center;
margin-bottom:25px;
font-size:26px;
}


/* PRODUCTS GRID */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}


/* PRODUCT CARD */

.product-card{
background:#1a1a1f;
border-radius:14px;
overflow:hidden;
transition:0.3s;
box-shadow:0 4px 15px rgba(0,0,0,0.4);
display:flex;
flex-direction:column;
}

.product-card:hover{
transform:translateY(-6px);
}


/* IMAGE SLIDER */

.slider{
position:relative;
overflow:hidden;
}

/* IMAGE SLIDER */

.slider{
position:relative;
overflow:hidden;
height:300px;      /* same reference as first CSS */
background:#fff;   /* clean background for product */
}

.slide{
display:none;
width:100%;
height:300px;
object-fit:contain;
padding:10px;
}

.slide.active{
display:block;
}

.slider img{
width:100%;
height:300px;
object-fit:contain;
padding:10px;
}


/* SLIDER BUTTONS */

.prev,
.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:white;
border:none;
padding:6px 10px;
cursor:pointer;
font-size:16px;
border-radius:4px;
}

.prev{
left:10px;
}

.next{
right:10px;
}


/* PRODUCT BODY */

.product-body{
padding:14px;
display:flex;
flex-direction:column;
flex:1;
}

.product-body h3{
font-size:16px;
margin-bottom:6px;
}

.product-body p{
color:#bbb;
font-size:14px;
margin-bottom:10px;
}


.product-body .amazon{
align-self:flex-end;
margin-top:auto;
background:#ff9900;
color:#000;
padding:7px 12px;
border-radius:6px;
text-decoration:none;
font-size:13px;
font-weight:600;
}
.amazon:hover{
background:#e68a00;
}
/* BUTTON GROUP */

.buttons{
display:flex;
justify-content:flex-end;
margin-top:auto;
}


/* CATEGORY BUTTONS */

.categories{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
padding:30px 0;
}

.category{
background:#1a1a1f;
padding:10px 16px;
border-radius:8px;
cursor:pointer;
text-decoration:none;
color:white;
transition:0.3s;
}

.category:hover{
background:#d4af37;
color:black;
}


/* FOOTER */

footer{
background:black;
color:white;
text-align:center;
padding:15px 0;
margin-top:auto;
border-radius: 20px;
}

.footer-links{
margin-bottom:6px;
}

.footer-links a{
margin:0 10px;
color:#bbb;
text-decoration:none;
font-size:14px;
}

.footer-links a:hover{
color:#d4af37;
}
.footer-small {
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* RESPONSIVE */

@media(max-width:768px){

.category-hero h1{
font-size:26px;
}

.products{
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
}

.slide{
height:320px;
}

}
/* SECTION SPACING */
.section {
  margin: 40px 0; /* 40px top and bottom, 0 left and right */
  padding: 20px 0; /* Optional: adds internal space if needed */
}

/* If you want more space specifically below the title */
.section h2 {
  margin-bottom: 30px;
  text-align: center; /* Keeps it consistent with your design */
}
.affiliate-link{
color:#fff;
text-decoration:none;
}

.price-note{
font-size:12px;
color:#bbb;
margin-left:4px;
}
.affiliate-link:hover{
text-decoration:underline;
}
.social-icons{
margin:10px 0 6px;
text-align:center;
}

.instagram-link{
display:inline-flex;
align-items:center;
gap:8px;
text-decoration:none;
color:#fff;
font-size:14px;
}

.instagram-link img{
width:12px;
height:12px;
transition:0.3s;
}

.instagram-link:hover img{
transform:scale(1.15);
}
.search-box{
  display:flex;
  justify-content:center;
  margin:20px 0;
}

.search-wrapper{
  position:relative;
  width:90%;
  max-width:500px;
}

.search-wrapper input{
  width:100%;
  padding:12px 15px 12px 42px;
  border-radius:25px;
  border:1px solid #ddd;
  outline:none;
  font-size:16px;
}

.search-wrapper input:focus{
  border-color:#000;
}

/* 🔍 SVG ICON */
.search-icon{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  fill:#888;
}
.no-data{
  text-align:center;
  padding:60px 20px;
}

.no-data h2{
  font-size:24px;
  margin-bottom:10px;
}

.no-data p{
  color:#777;
  font-size:16px;
}
/* 🔥 BUTTON GROUP */
.btn-group{
  display:flex;
  gap:10px;
  margin-top:12px;
}

/* COMMON BUTTON STYLE */
.view-btn,
.buy-btn{
  flex:1;
  text-align:center;
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
  position:relative;
  overflow:hidden;
}

/* VIEW BUTTON */
.view-btn{
  background:#2a2a32;
  color:#fff;
  border:1px solid rgba(255,255,255,0.1);
}

.view-btn:hover{
  background:#3a3a45;
  transform:translateY(-2px);
}

/* BUY BUTTON (MAIN CTA) */
.buy-btn{
  background:linear-gradient(135deg,#ff9900,#ffb84d);
  color:#000;
  box-shadow:0 4px 10px rgba(255,153,0,0.3);
}

/* HOVER EFFECT */
.buy-btn:hover{
  background:linear-gradient(135deg,#ffa31a,#ffc266);
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 6px 14px rgba(255,153,0,0.4);
}

/* CLICK EFFECT */
.view-btn:active,
.buy-btn:active{
  transform:scale(0.97);
}

/* MOBILE */
@media(max-width:480px){
  .btn-group{
    flex-direction:column;
  }
}
