/*Full Page Style*/
.page-container {
  width: 100%;
}
.content-wrapper {
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}
/* Top Scrolling Styles */
.marquee {
  width: 100%;
  background: #000;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 15s linear infinite;
}
.marquee-track span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 60px;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Header Styles */
.header.desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links a.active {
  color: #007bff;
}
.logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}
.search-bar {
  display: flex;
  width: 40%;
}
.search-bar input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
}
.search-bar button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background: #dcf378;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.mobile-top-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.mobile-logo {
  font-size: 20px;
  font-weight: bold;
    text-decoration: none;
      color: #000;
}
.mobile-logo a {
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}
.mobile-cart {
  position: relative;
  font-size: 20px;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 6px;
}
.bottom-nav.mobile-header {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 9999;
}
.bottom-nav a {
  text-decoration: none;
  font-size: 12px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width:768px) {
  .header.desktop-header {
    display: none;
  }
  .mobile-top-header {
    display: flex;
  }
  .bottom-nav.mobile-header {
    display: flex;
  }
}
 .products-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    padding-top:10px;
}
.product-card{
  margin-top: 20px;  
  width:400px;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    cursor:pointer;
}
.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}
.product-image{
    overflow:hidden;
}
.product-image img{
    width:100%;
    height:400px;
    object-fit:cover;
    transition:transform 0.5s ease;
}
.product-card:hover img{
    transform:scale(1.08);
}
.product-info{
    padding:15px;
}
.product-name{
    font-size:16px;
    font-weight:500;
    margin-bottom:5px;
}
.product-price{
    font-size:18px;
    color:#ff6a00;
    font-weight:700;
    margin-bottom:15px;
}
.add-to-cart-btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:linear-gradient(135deg,#ff6a00,#ff9f00);
    color:white;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.3s ease;
}
.add-to-cart-btn:hover{
    background:linear-gradient(135deg,#ff9f00,#ff6a00);
    transform:scale(1.03);
}
@media(max-width:900px){
    .product-card{
        width:45%;
    }
}
@media(max-width:600px){
    .product-card{
        width:90%;
    }
}
.gradient-line{
  width:120px;
  height:4px;
  margin:12px auto;
  background: linear-gradient(90deg,#ff6a00,#ffcc00);
  border-radius:10px;
}
/*Banner Style*/
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active {
  display: block;
}
.hero-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  top: 30%;
  left: 8%;
  color: white;
}
.hero-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}
.hero-btn {
  background: #ff6a00;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
/* arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  font-size: 30px;
  background: rgba(0,0,0,0.3);
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
}
.hero-arrow.left {
  left: 10px;
}
.hero-arrow.right {
  right: 10px;
}
.hero-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
}
/*Testimonials Style*/
.testimonial-section{
    margin-top: 50px;
    padding:60px 20px;
    background:#f9f9f9;
}
.testimonial-title{
    text-align:center;
    margin-bottom:40px;
}
.testimonial-title h2{
    font-size:28px;
    font-weight:600;
}
.title-line{
    width:80px;
    height:4px;
    background:#ff6a00;
    margin:10px auto;
    border-radius:10px;
}
.testimonial-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}
.testimonial-card{
    width:300px;
    background:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}
.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.testimonial-card img{
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:15px;
}
.testimonial-review{
    font-size:14px;
    color:#555;
    margin-bottom:15px;
}
.stars{
    color:#ffc107;
    margin-top:5px;
}
/* Footer.css */
.footer{
  background: linear-gradient(135deg,#111,#1f1f1f);
  color:#ddd;
  margin-top:60px;
}
.newsletter{
  text-align:center;
  padding:50px 20px;
  border-bottom:1px solid #333;
}
.newsletter h2{
  color:white;
  margin-bottom:10px;
}
.newsletter p{
  color:#aaa;
  margin-bottom:20px;
}
.newsletter-box{
  display:flex;
  justify-content:center;
  max-width:500px;
  margin:auto;
}
.newsletter-box input{
  flex:1;
  padding:12px;
  border:none;
  border-radius:5px 0 0 5px;
  outline:none;
}
.newsletter-box button{
  padding:12px 20px;
  border:none;
  background:#ff6a00;
  color:white;
  font-weight:600;
  border-radius:0 5px 5px 0;
  cursor:pointer;
  transition:0.3s;
}
.newsletter-box button:hover{
  background:#ff8c2f;
}
.footer-container{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:30px;
}
.footer-col{
  flex:1;
  min-width:220px;
}
.footer-col h3,
.footer-col h4{
  color:white;
  margin-bottom:15px;
}
.footer-col p{
  font-size:14px;
  line-height:1.6;
  color:#bbb;
}
.footer-col ul{
  list-style:none;
  padding:0;
}
.footer-col ul li{
  margin-bottom:10px;
  cursor:pointer;
  transition:0.3s;
}
.footer-col ul li:hover{
  color:#ff6a00;
  padding-left:5px;
}
.social-icons span{
  font-size:22px;
  margin-right:10px;
  cursor:pointer;
  transition:0.3s;
}
.social-icons span:hover{
  transform:scale(1.2);
  color:#ff6a00;
}
.payment-icons{
  margin-top:15px;
}
.payment-icons span{
  font-size:22px;
  margin-right:10px;
}
.footer-bottom{
  text-align:center;
  padding:15px;
  border-top:1px solid #333;
  font-size:14px;
}
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.instagram-feed iframe {
  border-radius: 8px;
  overflow: hidden;
}
.footer a {
  color: #fff; 
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color:#ff6a00;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin-bottom: 8px;
}
.breadcrumb-container {
  background-color: #fff;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  color: #555;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-radius: 8px;
  margin-bottom: 20px;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.breadcrumb-list .separator {
  margin: 0 8px;
  color: #999;
  font-weight: 600;
}
.breadcrumb-link {
  display: flex;
  align-items: center;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.breadcrumb-current {
  display: flex;
  align-items: center;
  color: #333;
  font-weight: 600;
}
.breadcrumb-icon {
  margin-right: 5px;
  font-size: 0.9rem;
  color: #555;
}
@media (max-width: 768px) {
  .breadcrumb-container {
    font-size: 0.8rem;
    padding: 10px 15px;
  }
  .breadcrumb-icon {
    font-size: 0.8rem;
  }
}
.premium-product {
  font-family: system-ui, sans-serif;
  padding: 20px;
  background: #fafafa;
  color: #111;
  width: 90%;
  align-self: center;
}
.product-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.image-area {
  width: 100%;
}
.main-img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.main-img:hover {
  transform: scale(1.1);
}
.thumb-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
}
.thumb-row img {
  width: 60px;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
}
.thumb-row img:hover {
  border-color: #000;
}
.info-area {
  width: 100%;
}
.info-area h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.price-box {
  margin: 10px 0;
}
.price {
  font-size: 22px;
  font-weight: bold;
}
.old {
  font-size: 16px;
  text-decoration: line-through;
  margin-left: 10px;
  color: #888;
}
.discount {
  font-size: 16px;
  font-weight: 600;
  color: green;
  margin-left: 10px;
}
.color-options {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.color.active {
  border: 2px solid #000;
}
.black { background: black; }
.red { background: red; }
.blue { background: blue; }
.qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qty button {
  width: 32px;
  height: 32px;
  font-size: 18px;
}
.delivery {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.delivery input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.action {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cart,
.buy {
  flex: 1;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}
.cart {
  background: #000;
  color: #fff;
}
.buy {
  background: #ff4d4f;
  color: #fff;
}
.wish {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.tabs {
  margin-top: 60px;
}
.tab-header {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.tab-header button {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}
.tab-header button:hover {
  background: #f0f0f0;
}
.tab-body p, .tab-body ul {
  font-size: 14px;
  line-height: 1.6;
}
.related {
  margin-top: 40px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.card img {
  width: 100%;
  border-radius: 10px;
}
.sticky-cart {
  position: fixed;
  bottom: 10;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 999;
}
.sticky-cart span {
  font-weight: 600;
  font-size: 18px;
}
.sticky-cart button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: #000;
  color: #fff;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-layout {
    flex-direction: column;
    gap: 40px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-img:hover {
    transform: scale(1.05);
  }
}
@media (min-width: 1025px) {
  .product-layout {
    flex-direction: row;
    gap: 50px;
  }
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .main-img:hover {
    transform: scale(1.15);
  }
}
.tab-header {
  display: flex;
  gap: 15px;
  position: relative;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.tab-header button {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  position: relative;
  transition: color 0.3s ease;
}
.tab-header button.active {
  color: #000;
}
.tab-header button:hover {
  color: #000;
}
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: #000;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.tab-body {
  padding: 20px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.tab-content {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.4s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-content ul {
  padding-left: 20px;
  margin: 0;
}
.tab-content li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 768px) {
  .tab-header {
    gap: 8px;
  }
  .tab-header button {
    font-size: 14px;
    padding: 10px 12px;
    flex: 1;
    text-align: center;
  }
  .tab-body {
    padding: 15px 10px;
  }
}