/* ---------- Global Reset ---------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgb(241, 231, 231);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Button Hover Effect ---------- */
.btn-success {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* =======================
   FOOTER STYLING
======================= */

.footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #ff4d4d;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

/* Paragraph */
.footer p {
  line-height: 1.7;
  color: #dcdcdc;
}

/* Links */
.footer-link {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ff4d4d;
  padding-left: 6px;
}

/* Contact List */
.footer-contact li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-contact i {
  color: #ff4d4d;
  font-size: 16px;
}

/* Social Icons */
.footer-social {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: #ff4d4d;
  color: #fff;
  transform: translateY(-4px);
}

/* Logo */
.footer img {
  max-width: 100%;
  filter: brightness(1.1);
}

/* Footer Bottom */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer small {
  font-size: 13px;
  color: #cccccc;
}

.footer small a:hover {
  color: #ff4d4d !important;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    margin: 0 auto;
  }
}
body{
    background:#f1f3f6;
    font-family:Arial, sans-serif;
}

.hero-item{
    position:relative;
}

.hero-item img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    top:50%;
    left:80px;
    transform:translateY(-50%);
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    font-weight:bold;
}

.hero-content p{
    font-size:22px;
    margin-bottom:20px;
}

.category-box{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    transition:0.3s;
    border:1px solid #eee;
}

.category-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.category-box img{
    width:65px;
    height:65px;
    object-fit:contain;
    margin:auto;
    margin-bottom:10px;
}

.category-box h6{
    font-weight:600;
}

.product-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    position:relative;
    transition:0.3s;
    border:1px solid #eee;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.product-img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-content{
    padding:20px;
}

.product-content h5{
    font-size:18px;
    font-weight:600;
}

.discount-badge{
    position:absolute;
    top:10px;
    left:10px;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
    font-size:13px;
    z-index:2;
}

.rating{
    color:#ffc107;
    margin-top:10px;
}

.price-box{
    margin-top:10px;
}

.new-price{
    font-size:24px;
    font-weight:bold;
    color:#000;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    margin-left:10px;
}

.section-title h3{
    font-weight:bold;
}

.owl-nav{
    position:absolute;
    top:-65px;
    right:0;
}

.owl-nav button{
    width:40px;
    height:40px;
    border-radius:50% !important;
    background:#fff !important;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    margin-left:10px;
}

.owl-nav button span{
    font-size:28px;
    line-height:28px;
}

.hero-slider .owl-nav{
    top:45%;
    width:100%;
    display:flex;
    justify-content:space-between;
}

.hero-slider .owl-nav button{
    background:rgba(255,255,255,0.7) !important;
}

@media(max-width:768px){

    .hero-item img{
        height:250px;
    }

    .hero-content{
        left:20px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:14px;
    }

    .product-img{
        height:180px;
    }

}
.watch-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.4s;
    border:1px solid #eee;
}

.watch-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.watch-img-box{
    overflow:hidden;
    background:#f8f8f8;
}

.watch-img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.4s;
}

.watch-card:hover .watch-img{
    transform:scale(1.08);
}

.watch-content{
    padding:20px;
}

.watch-content h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.watch-rating{
    color:#ffc107;
    font-size:18px;
    margin-bottom:12px;
}

.watch-price{
    margin-bottom:10px;
}

.new-price{
    font-size:28px;
    font-weight:bold;
    color:#000;
}

.old-price{
    margin-left:10px;
    color:#999;
    text-decoration:line-through;
    font-size:16px;
}

.watch-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#000;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    z-index:2;
}

.watch-slider .owl-nav{
    position:absolute;
    top:-70px;
    right:0;
}

.watch-slider .owl-nav button{
    width:42px;
    height:42px;
    border-radius:50% !important;
    background:#fff !important;
    box-shadow:0 5px 15px rgba(0,0,0,0.12);
    margin-left:10px;
}

.watch-slider .owl-nav button span{
    font-size:28px;
    line-height:28px;
}

@media(max-width:768px){

    .watch-img{
        height:220px;
    }

    .new-price{
        font-size:22px;
    }

}
.mobile-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.4s;
    border:1px solid #eee;
}

.mobile-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.mobile-img-box{
    background:#f7f7f7;
    overflow:hidden;
}

.mobile-img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.4s;
}

.mobile-card:hover .mobile-img{
    transform:scale(1.08);
}

.mobile-content{
    padding:20px;
}

.mobile-content h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.mobile-rating{
    color:#ffc107;
    font-size:18px;
    margin-bottom:12px;
}

.mobile-price{
    margin-bottom:15px;
}

.new-price{
    font-size:28px;
    font-weight:bold;
    color:#000;
}

.old-price{
    margin-left:10px;
    text-decoration:line-through;
    color:#999;
}

.mobile-features{
    padding-left:18px;
    margin-bottom:20px;
}

.mobile-features li{
    font-size:14px;
    margin-bottom:6px;
    color:#555;
}

.mobile-offer{
    position:absolute;
    top:15px;
    left:15px;
    background:#0d6efd;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    z-index:2;
}

.mobile-slider .owl-nav{
    position:absolute;
    top:-70px;
    right:0;
}

.mobile-slider .owl-nav button{
    width:42px;
    height:42px;
    border-radius:50% !important;
    background:#fff !important;
    box-shadow:0 5px 15px rgba(0,0,0,0.12);
    margin-left:10px;
}

.mobile-slider .owl-nav button span{
    font-size:28px;
    line-height:28px;
}

@media(max-width:768px){

    .mobile-img{
        height:220px;
    }

    .new-price{
        font-size:22px;
    }

    .mobile-content{
        padding:15px;
    }

}
.women-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.4s;
    border:1px solid #eee;
}

.women-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.women-img-box{
    overflow:hidden;
    background:#f8f8f8;
}

.women-img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:0.4s;
}

.women-card:hover .women-img{
    transform:scale(1.08);
}

.women-content{
    padding:20px;
}

.women-content h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.women-rating{
    color:#ffc107;
    font-size:18px;
    margin-bottom:12px;
}

.women-price{
    margin-bottom:15px;
}

.new-price{
    font-size:28px;
    font-weight:bold;
    color:#000;
}

.old-price{
    margin-left:10px;
    color:#999;
    text-decoration:line-through;
}

.women-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#dc3545;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    z-index:2;
}

.women-slider .owl-nav{
    position:absolute;
    top:-70px;
    right:0;
}

.women-slider .owl-nav button{
    width:42px;
    height:42px;
    border-radius:50% !important;
    background:#fff !important;
    box-shadow:0 5px 15px rgba(0,0,0,0.12);
    margin-left:10px;
}

.women-slider .owl-nav button span{
    font-size:28px;
    line-height:28px;
}

@media(max-width:768px){

    .women-img{
        height:250px;
    }

    .women-content{
        padding:15px;
    }

    .new-price{
        font-size:22px;
    }

}
