@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #E5E7EB;
  color: #020617;
  line-height: 1.6;
}


.top-bar{
  background:#111;
  color:#fff;
  overflow:hidden;
  height:35px;
  position:relative;
}

.ticker-text{
  position:absolute;
  white-space:nowrap;
  line-height:35px;
  font-size:14px;
  animation:tickerMove 12s linear forwards;
}

@keyframes tickerMove{

  0%{
    left:100%;
    transform:translateX(0);
  }

  40%{
    left:50%;
    transform:translateX(-50%);
  }

  60%{
    left:50%;
    transform:translateX(-50%);
  }

  100%{
    left:-100%;
    transform:translateX(0);
  }

}

/* ================= HEADER ================= */

.site-header {
  background: #ff3c00;
  padding: 40px 20px;
  text-align: center;
}


.top-header{
display:flex;
justify-content:space-between;
align-items:center;
text-align:center;
padding:15px 20px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}

/* ===== LOGO ===== */

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #F59E0B;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== HOME BUTTON ===== */

.home-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.home-icon {
  width: 26px;
  height: 26px;
  stroke: #111111;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.3s;
}

.home-btn:hover .home-icon {
  stroke: #007aff;
}

.hero{
text-align:center;
padding:80px 20px;
background:linear-gradient(135deg,#ff6600,#ff3c00);
color:white;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.explore-btn{
background:white;
color:#ff3c00;
padding:12px 25px;
text-decoration:none;
font-weight:bold;
border-radius:6px;
}

.visitor-counter{
  text-align:center;
  padding:5px;
  margin-top:10px;
  background:#111;
  color:white;
  border-radius:10px;
  width:260px;
  margin-left:auto;
  margin-right:auto;
  box-shadow:0 0 10px rgba(0,0,0,0.3);
}

.visitor-counter h3{
  margin-bottom:10px;
  font-size:18px;
}

.counter-box{
  font-size:32px;
  letter-spacing:4px;
  background:black;
  padding:10px;
  border-radius:5px;
  font-weight:bold;
}
.trust-section{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
padding:40px 20px;
background:#f5f5f5;
}

.trust-box{
background:white;
padding:15px 20px;
border-radius:8px;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
font-size:15px;
}
/* ================= LAYOUT ================= */

.container {
  max-width: 1400px;
  margin: auto;
  padding: 25px;
  text-align: center;
}

.container h1 {
  margin-bottom: 10px;
}

.container p {
  margin-bottom: 40px;
  color: #000000;
}

.live-counter{
  background:#ff3c00;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:bold;
  font-size:16px;
  border-radius:8px;
  margin:15px auto;
  width:90%;
  max-width:600px;
}

/* ================= PRODUCT GRID ================= */

.grid {
  display: grid;
  gap: 50px;
} 

/* Mobile */
@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


/* ================= CARD ================= */
.card{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.title{
  padding:12px;
  font-weight:600;
  font-size:14px;
  color:#f5f7fa;
}
.card {
  background: #0F172A;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}


/* ================= CUSTOM ORDERS ================= */

.custom-orders {
  margin-top: 80px;
  padding: 50px 20px;
  background: #f5f7fa;
  border-radius: 14px;
  text-align: center;
}

.custom-orders h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0A3D91;
}

.custom-orders p {
  color: #111111;
  margin-bottom: 40px;
}

.custom-grid {
  display: grid;
  gap: 20px;
}

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

/* Tablet & Desktop */
@media (min-width: 768px) {
  .custom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.custom-card img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s ease;
}

.custom-card img:hover {
  transform: scale(1.05);
}

.custom-card h3 {
  margin-top: 10px;
  font-size: 14px;
  color: #111111;
}

/* ===== FOOTER ===== */

.site-footer{
text-align:center;
padding:35px 15px;
background:#f5f5f5;
font-size:14px;
color:#666;
border-top:1px solid #e5e5e5;
}

.footer-line a{
color:#666;
text-decoration:none;
margin:0 4px;
}

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

.footer-line span{
margin:0 4px;
color:#999;
}

.affiliate-text{
margin-top:10px;
font-size:13px;
color:#777;
max-width:650px;
margin-left:auto;
margin-right:auto;
}