/* ==========================
   GOOGLE RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

/* ==========================
   HEADER
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:75px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
    z-index:1000;
}

.logo{
    width:200px;
    height:75px;
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    width:100%;
    height:100%;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    cursor:pointer;
}

nav ul{
    display:flex;
    list-style:none;
    gap:45px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

nav ul li a:hover{
    color:#666;
}

/* ==========================
   COMING SOON
========================== */

.coming-soon{
    background:#f2f2f2;
    padding:4px 10px;
    border-radius:30px;
    font-size:10px;
    margin-left:8px;
    color:#666;
}

/* ==========================
   RIGHT MENU
========================== */

.right-menu{
    display:flex;
    gap:25px;
}

.right-menu a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:600;
}

/* ==========================
   MEGA MENU
========================== */

.mega-menu{

position:fixed;

top:75px;

left:50%;

transform:translateX(-50%);

width:90%;
max-width:1100px;

background:#fff;

display:flex;
justify-content:space-between;

gap:50px;

padding:40px;

border-radius:18px;

box-shadow:0 20px 60px rgba(0,0,0,.12);

opacity:0;
visibility:hidden;

transition:.35s;

z-index:999;

}
.dropdown-parent:hover .mega-menu{

    opacity:1;
    visibility:visible;
    top:70px;

}

.column{
    display:flex;
    flex-direction:column;
}

.column h3{

    margin-bottom:15px;
    font-size:15px;

}

.column a{

    text-decoration:none;
    color:#555;
    margin:7px 0;
    font-size:15px;
    transition:.3s;

}

.column a:hover{

    color:#000;
    padding-left:5px;

}

/* ==========================
   MOBILE BUTTON
========================== */

.menu-btn{

    display:none;
    font-size:28px;
    cursor:pointer;

}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:320px;
    height:100vh;

    background:#fff;

    z-index:2000;

    transition:.4s;

    padding:25px;

    box-shadow:-10px 0 35px rgba(0,0,0,.15);

    overflow-y:auto;
    -webkit-overflow-scrolling:touch;

}

.mobile-menu.active{

    right:0;

}

.mobile-top{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:40px;

}

.mobile-top h2{

    font-size:28px;

}

.close-menu{

    font-size:28px;
    cursor:pointer;

}

.mobile-menu ul{

    list-style:none;

}

.mobile-menu ul li{

    padding:18px 0;
    border-bottom:1px solid #eee;

    font-size:18px;
    font-weight:600;

}

.mobile-menu span{

    background:#111;
    color:#fff;

    padding:3px 10px;

    border-radius:30px;

    font-size:10px;

    margin-left:8px;

}

/* ==========================
   HERO PLACEHOLDER
========================== */

.hero{

    margin-top:75px;
    width:100%;
    height:100vh;
    background:#f6f6f6;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

header{

padding:0 25px;

}

nav{

display:none;

}

.right-menu{

display:none;

}

.menu-btn{

display:block;

}

.logo{

width:120px;

}

}

@media(max-width:768px){

header{

height:70px;

padding:0 18px;

}

.logo{

width:110px;
height:40px;

}

.mobile-menu{

width:100%;

}

.hero{

height:70vh;

}

}

@media(max-width:480px){

header{

padding:0 15px;

}

.mobile-top h2{

font-size:24px;

}

.mobile-menu ul li{

font-size:17px;

}
@media(max-width:992px){

.mega-menu{

display:none;

}

}

}
.mobile-dropdown-btn{

display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;

}

.mobile-submenu{

max-height:0;
overflow:hidden;

transition:.4s ease;

list-style:none;

padding-left:15px;

}

.mobile-submenu.active{

max-height:900px;
margin-top:12px;

}

.mobile-submenu li{

padding:10px 0;
border:none;

}

.mobile-submenu-heading{
    padding:14px 0 4px !important;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:#999;
}

.mobile-submenu-heading:first-child{
    padding-top:0 !important;
}

.mobile-submenu a{

text-decoration:none;
color:#555;
font-size:15px;

}
.mobile-menu ul li a{
    text-decoration:none;
    color:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:17px;
    font-weight:600;
    width:100%;
}

.mobile-menu .coming-soon{
    font-size:10px;
    padding:3px 8px;
    border-radius:20px;
}


.hero-video{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-video video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    
}

.hero-content{
    position:absolute;
    left:50%;
    bottom:8%;
    transform:translateX(-50%);
    text-align:center;
    width:90%;
    color:#ffffff;
}

.hero-content h1{
    font-family: "Anton SC", sans-serif;

    font-size:72px;
    font-weight:900;
    margin:0 0 15px;
    letter-spacing:6px;
    line-height:1;
}



.hero-content p{
    max-width:550px;
    margin:auto;
    font-size:16px;
    line-height:1.6;
}

@media (max-width:768px){

.hero-video{
    height:70vh;
}

.hero-content{
    bottom:30px;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:14px;
}

}
.insole-grid{
    width:95%;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.card{
    position:relative;
    overflow:hidden;
    height:700px;
    cursor:pointer;
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.card:hover img{
    transform:scale(1.08);
}

.card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.65),transparent 60%);
}

.content{
    position:absolute;
    left:40px;
    bottom:20px;
    z-index:2;
}

.content h2{
   font-family:Helvetica, Arial, sans-serif;
  font-size:19px;
  font-weight:700;
  color:#ffffff;
  margin:0;




}

.content a{
    display:inline-block;
  background:#fff;
  color:#111;
  text-decoration:none;
  padding:10px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

@media(max-width:991px){

.insole-grid{
grid-template-columns:1fr;
}

.card{
height:520px;
}

.content h2{
font-size:32px;
}

}
/*==============================
      LATEST PRODUCTS
===============================*/

.latest-products{
    width:100%;
    padding:80px 50px;
    background:#fff;
}

.products-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.products-header h2{
    font-family:Helvetica, Arial, sans-serif;
  font-size:28px;
  font-weight:700;
  color:#111;
  margin:0;
}


.header-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.header-right a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.header-right a:hover{
    opacity:.7;
}

.slider-btn{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    color:#111;
    cursor:pointer;
    font-size:18px;
    transition:.25s;
}

.slider-btn:hover{
    background:#dcdcdc;
}

.products-wrapper{
    width:100%;
    overflow:hidden;
}

.products-track{
    display:flex;
    gap:18px;
    transition:transform .45s ease;
}

/*==============================
         PRODUCT CARD
===============================*/

.product-card{
    flex:0 0 calc((100% - 36px)/3);
    cursor:pointer;
}

.product-image{
    width:90%;
    aspect-ratio:1/1;
    background:#f7f7f7;
    overflow:hidden;
    border-radius:2px;
    
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    background: transparent;
}

.product-card:hover img{
    transform:scale(1.06);
}

.product-info{
    padding-top:18px;
}

.product-info h3{
     font-family:Helvetica, Arial, sans-serif;
  font-size:15px;
  font-weight:700;
  color:#111;
  margin:0 0 4px;
}

.product-info p{
   font-family:Helvetica, Arial, sans-serif;
  font-size:14px;
  color:#757575;
  margin:0 0 6px;
}
.product-info span{
    display:block;
    font-family: Helvetica, Arial, sans-serif;
    font-size:24px;
    font-weight:500;
    color:#111;
}

.product-info span{
    font-size:16px;
    font-weight:800;
    color:#111;
}

/*==============================
         TABLET
===============================*/

@media(max-width:991px){

.latest-products{
    padding:60px 30px;
}

.product-card{
    flex:0 0 calc((100% - 18px)/2);
}

.products-header h2{
    font-size:34px;
}

}

/*==============================
         MOBILE
===============================*/

@media(max-width:768px){

.latest-products{
    padding:45px 18px;
}

.products-header{
    margin-bottom:20px;
}

.products-header h2{
    font-size:28px;
}

.header-right a{
    display:none;
}

.slider-btn{
    width:40px;
    height:40px;
}

.product-card{
    flex:0 0 100%;
}

.product-image img{
    padding:18px;
}

.product-info h3{
    font-size:18px;
}

.product-info p{
    font-size:14px;
}

.product-info span{
    font-size:18px;
}

}
.hero-slider{ position:relative; width:100%; height:100vh; overflow:hidden; }
.hero-slide{ position:absolute; inset:0; opacity:0; visibility:hidden; transition:opacity 1s ease; z-index:1; }
.hero-slide.active{ opacity:1; visibility:visible; z-index:2; }
.hero-slide video, .hero-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-slide .hero-content{ position:absolute; left:50%; bottom:8%; transform:translateX(-50%); text-align:center; width:90%; color:#fff; z-index:3; }
.hero-slide .hero-content h1{ font-size:72px; font-weight:900; margin:0 0 15px; letter-spacing:2px; line-height:1; }
.hero-slide .hero-content p{ max-width:550px; margin:0 auto 20px; font-size:16px; line-height:1.6; }
.hero-btn{ display:inline-block; background:#fff; color:#111; text-decoration:none; padding:12px 30px; border-radius:999px; font-weight:700; font-size:14px; transition:.2s; }
.hero-btn:hover{ opacity:.85; }
.hero-controls{ position:absolute; bottom:24px; right:30px; z-index:5; display:flex; gap:10px; }
.hero-controls button{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.6); background:rgba(0,0,0,.25); color:#fff; font-size:14px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.2s; }
.hero-controls button:hover{ background:rgba(255,255,255,.25); }
.hero-dots{ position:absolute; bottom:34px; left:30px; z-index:5; display:flex; gap:8px; }
.hero-dots .dot{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.5); cursor:pointer; transition:.2s; }
.hero-dots .dot.active{ background:#fff; width:20px; border-radius:4px; }

@media (max-width:768px){
  .hero-slider{ height:70vh; }
  .hero-slide .hero-content{ bottom:16%; }
  .hero-slide .hero-content h1{ font-size:36px; }
  .hero-slide .hero-content p{ font-size:14px; }
  .hero-controls{ right:16px; bottom:16px; }
  .hero-dots{ left:16px; bottom:24px; }
}
.just-landed{ width:95%; margin:60px auto; }

.jl-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}

.jl-header h2{
  font-family:Helvetica, Arial, sans-serif;
  font-size:28px;
  font-weight:700;
  color:#111;
  margin:0;
}

.jl-header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.jl-header-right a{
  text-decoration:none;
  color:#111;
  font-size:14px;
  font-weight:700;
}

.jl-header-right a:hover{ opacity:.7; }

.jl-btn{
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:#f2f2f2;
  color:#111;
  cursor:pointer;
  font-size:14px;
  transition:.2s;
}

.jl-btn:hover{ background:#dcdcdc; }

.jl-wrapper{
  width:100%;
  overflow:hidden;
}

.jl-track{
  display:flex;
  gap:14px;
  transition:transform .45s ease;
}

.jl-card{
  flex:0 0 calc((100% - 28px)/3);
  cursor:pointer;
}

.jl-image{
  width:100%;
  aspect-ratio:1/1;
  background:linear-gradient(180deg,#eee,#f7f7f7);
  overflow:hidden;
  border-radius:2px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.jl-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}

.jl-card:hover .jl-image img{
  transform:scale(1.06);
}

.jl-info{ padding-top:16px; }

.jl-info h3{
  font-family:Helvetica, Arial, sans-serif;
  font-size:15px;
  font-weight:700;
  color:#111;
  margin:0 0 4px;
}

.jl-info p{
  font-family:Helvetica, Arial, sans-serif;
  font-size:14px;
  color:#757575;
  margin:0 0 6px;
}

.jl-info span{
  font-family:Helvetica, Arial, sans-serif;
  font-size:16px;
  font-weight:700;
  color:#111;
}

@media(max-width:991px){
  .jl-card{ flex:0 0 calc((100% - 14px)/2); }
}

@media(max-width:600px){
  .jl-card{ flex:0 0 80%; }
  .jl-header h2{ font-size:22px; }
}
.spotlight{
  text-align:center;
  padding:90px 40px;
}

.spotlight h2{
  font-family: "Anton SC", sans-serif;
  font-weight:400;   /* Anton already bold hai, extra weight nahi chahiye */
  font-size:72px;
  letter-spacing:0px;
  line-height:1;
  margin:0 0 16px;
  color:#111;
  text-transform:uppercase;
}

.spotlight p{
  font-family:'PT Serif', serif;
  font-style:italic;
  font-size:16px;
  font-weight:400;
  color:#1a1a2e;
  margin:0 0 55px;
}

.spotlight p{
  font-family:Helvetica, Arial, sans-serif;
  font-size:15px;
  font-weight:500;
  color:#333;
  margin:0 0 55px;
}

.spotlight-grid{
  display:grid;
  grid-template-columns:repeat(8, 1fr);
  gap:35px 20px;
  max-width:1200px;
  margin:0 auto;
}

.spotlight-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  cursor:pointer;
}

.spotlight-item img{
  width:120px;
  height:120px;
  margin-bottom:10px;
  transition:transform .3s ease;
}

.spotlight-item:hover img{
  transform:scale(1.1);
}

.spotlight-item span{
  font-family:Helvetica, Arial, sans-serif;
  font-size:13px;
  font-weight:700;
  color:#111;
}

@media(max-width:991px){
  .spotlight h2{ font-size:44px; }
  .spotlight-grid{ grid-template-columns:repeat(4, 1fr); gap:35px 16px; }
}

@media(max-width:600px){
  .spotlight{ padding:60px 20px; }
  .spotlight h2{ font-size:32px; }
  .spotlight p{ font-size:13px; margin-bottom:35px; }
  .spotlight-grid{ grid-template-columns:repeat(3, 1fr); gap:28px 12px; }
  .spotlight-item img{ width:64px; height:64px; }
  .spotlight-item span{ font-size:11px; }
}
.how-you-move{
  width:95%;
  margin:70px auto;
}

.hym-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.hym-header h2{
  font-family:Helvetica, Arial, sans-serif;
  font-size:26px;
  font-weight:700;
  color:#111;
  margin:0;
}

.hym-nav{
  display:flex;
  gap:10px;
}

.hym-btn{
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:#f2f2f2;
  color:#111;
  cursor:pointer;
  font-size:14px;
  transition:.2s;
}

.hym-btn:hover{ background:#dcdcdc; }

.hym-wrapper{
  width:98%;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.hym-wrapper::-webkit-scrollbar{ display:none; }

.hym-track{
  display:flex;
  gap:8px;
}

.hym-card{
  position:relative;
  flex:0 0 calc((100% - 16px)/3);
  height:540px;
  overflow:hidden;
  cursor:pointer;
}

.hym-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.hym-card:hover img{
  transform:scale(1.06);
}

.hym-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), transparent 45%);
  pointer-events:none;
}

.hym-overlay{
  position:absolute;
  left:24px;
  bottom:30px;
  z-index:2;
}

.hym-overlay h3{
  color:#fff;
  font-size:22px;
  font-weight:700;
  margin:0 0 14px;
}

.hym-shop{
  display:inline-block;
  background:#fff;
  color:#111;
  text-decoration:none;
  padding:10px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

.hym-scrollbar-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:20px;
}

.hym-side-arrow{
  width:26px;
  height:26px;
  border-radius:50%;
  border:none;
  background:#f2f2f2;
  color:#111;
  cursor:pointer;
  font-size:12px;
  flex-shrink:0;
}

.hym-side-arrow:hover{ background:#dcdcdc; }

.hym-scrollbar-track{
  flex:1;
  height:3px;
  background:#e5e5e5;
  border-radius:3px;
  position:relative;
}

.hym-scrollbar-fill{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  background:#111;
  border-radius:3px;
  width:33%;
}

@media(max-width:991px){
  .hym-card{ flex:0 0 calc((100% - 8px)/2); height:520px; }
}

@media(max-width:600px){
  .hym-card{ flex:0 0 85%; height:440px; }
  .hym-header h2{ font-size:20px; }
  .hym-overlay h3{ font-size:18px; }
}
.nike-footer{
  width:100%;
  border-top:1px solid #e5e5e5;
  padding:50px 50px 0;
}

.nf-top{
  display:grid;
  grid-template-columns:repeat(4, 1fr) auto;
  gap:30px;
  padding-bottom:60px;
  align-items:start;
}

.nf-col h4{
  font-family:Helvetica, Arial, sans-serif;
  font-size:15px;
  font-weight:700;
  color:#111;
  margin:0 0 18px;
}

.nf-col a{
  display:block;
  text-decoration:none;
  color:#757575;
  font-size:14px;
  margin-bottom:14px;
  transition:.2s;
}

.nf-col a:hover{
  color:#111;
  text-decoration:underline;
}

.nf-region{
  display:flex;
  align-items:center;
  gap:8px;
  justify-self:end;
  font-size:14px;
  font-weight:600;
  color:#111;
  cursor:pointer;
  white-space:nowrap;
}

.nf-region i{
  font-size:15px;
}

.nf-bottom{
  border-top:1px solid #e5e5e5;
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.nf-bottom p{
  font-size:13px;
  color:#757575;
  margin:0;
}

.nf-bottom-links{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.nf-bottom-links a{
  text-decoration:none;
  color:#757575;
  font-size:13px;
  transition:.2s;
}

.nf-bottom-links a:hover{
  color:#111;
  text-decoration:underline;
}

@media(max-width:991px){
  .nf-top{
    grid-template-columns:repeat(2, 1fr);
    gap:30px 20px;
  }
  .nf-region{
    justify-self:start;
    grid-column:span 2;
  }
}

@media(max-width:600px){
  .nike-footer{ padding:40px 20px 0; }
  .nf-top{
    grid-template-columns:1fr;
  }
  .nf-region{ grid-column:span 1; }
  .nf-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .nf-bottom-links{ gap:16px; }
}
.gender-shop{
  width:95%;
  margin:80px auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  background:#fff;
}

.gs-card{
  position:relative;
  height:550px;
  overflow:hidden;
  cursor:pointer;
}

.gs-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.gs-card:hover img{
  transform:scale(1.06);
}

.gs-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), transparent 40%);
  pointer-events:none;
}

.gs-overlay{
  position:absolute;
  left:22px;
  bottom:24px;
  z-index:2;
}

.gs-overlay h3{
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin:0 0 12px;
}

.gs-shop{
  display:inline-block;
  background:#fff;
  color:#111;
  text-decoration:none;
  padding:9px 20px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}

@media(max-width:900px){
  .gender-shop{
    grid-template-columns:1fr;
    width:90%;
  }
  .gs-card{
    height:280px;
  }
}
.cart-icon:hover { opacity: 0.7; }
/* ===========================
   CHECKOUT PAGE
=========================== */

.checkout-page{
    max-width:1300px;
    margin:120px auto 60px;
    padding:0 25px;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.checkout-form{

    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.checkout-form h2{

    font-size:30px;
    margin-bottom:25px;
    font-weight:700;

}

.checkout-form .row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;

}

.checkout-form input,
.checkout-form textarea,
.checkout-form select{

    width:100%;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    transition:.3s;
    outline:none;
    margin-bottom:18px;
    background:#fff;

}

.checkout-form textarea{

    resize:none;
    min-height:120px;

}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus{

    border-color:#000;
    box-shadow:0 0 0 4px rgba(0,0,0,.08);

}

.checkout-form label{

    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;

}

/* =======================
ORDER SUMMARY
======================= */

.order-summary{

    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:sticky;
    top:120px;
    height:max-content;

}

.order-summary h2{

    margin-bottom:20px;
    font-size:28px;

}

.summary-item{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    padding-bottom:18px;
    border-bottom:1px solid #eee;

}

.summary-item img{

    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #eee;

}

.summary-item .details{

    flex:1;
    margin-left:15px;

}

.summary-item h4{

    margin:0;
    font-size:15px;

}

.summary-item p{

    margin:4px 0;
    color:#777;
    font-size:13px;

}

.summary-total{

    margin-top:25px;
    padding-top:20px;
    border-top:2px solid #eee;

}

.summary-total div{

    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:15px;

}

.summary-total .grand{

    font-size:22px;
    font-weight:bold;

}

/* =======================
PAYMENT
======================= */

.payment-box{

    margin-top:25px;
    padding:20px;
    background:#fafafa;
    border:1px solid #eee;
    border-radius:12px;

}

/* =======================
BUTTON
======================= */

.place-order{

    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#000;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    margin-top:20px;

}

.place-order:hover{

    background:#222;
    transform:translateY(-2px);

}

/* =======================
RESPONSIVE
======================= */

@media(max-width:991px){

.checkout-page{

grid-template-columns:1fr;

}

.order-summary{

position:relative;
top:0;

}

.checkout-form .row{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.checkout-page{

padding:0 15px;

}

.checkout-form{

padding:20px;

}

.order-summary{

padding:20px;

}

.checkout-form h2,
.order-summary h2{

font-size:24px;

}

.place-order{

height:52px;
font-size:16px;

}

}
/* ==========================
CART PAGE
==========================*/

.cart-page{

max-width:1300px;

margin:120px auto 60px;

padding:0 20px;

display:grid;

grid-template-columns:2fr 1fr;

gap:35px;

}

.cart-left{

background:#fff;

padding:30px;

border:1px solid #eee;

border-radius:12px;

}

.cart-left h1{

font-size:34px;

margin-bottom:30px;

}

.cart-item{

display:flex;

align-items:center;

justify-content:space-between;

padding:20px 0;

border-bottom:1px solid #eee;

gap:20px;

}

.cart-item img{

width:110px;

height:110px;

object-fit:cover;

border-radius:10px;

border:1px solid #eee;

}

.cart-item h3{

font-size:18px;

margin-bottom:8px;

}

.cart-item p{

margin:4px 0;

color:#666;

font-size:14px;

}

.cart-item button{

width:36px;

height:36px;

border:none;

background:#111;

color:#fff;

cursor:pointer;

border-radius:6px;

}

.cart-right{

background:#fff;

padding:30px;

border:1px solid #eee;

border-radius:12px;

height:max-content;

position:sticky;

top:110px;

}

.summary-line{

display:flex;

justify-content:space-between;

margin:18px 0;

font-size:16px;

}

.total{

font-size:22px;

font-weight:bold;

}

.checkout-btn{

width:100%;

height:55px;

background:#111;

color:#fff;

border:none;

border-radius:8px;

cursor:pointer;

font-size:16px;

margin-top:25px;

}

.continue-btn{

width:100%;

height:55px;

margin-top:12px;

background:#fff;

border:1px solid #111;

cursor:pointer;

border-radius:8px;

font-size:16px;

}

@media(max-width:900px){

.cart-page{

grid-template-columns:1fr;

}

.cart-right{

position:relative;

top:0;

}

.cart-item{

flex-direction:column;

align-items:flex-start;

}

}
/* ============================================================
   FULL MOBILE RESPONSIVE FIX
   - Images show FULLY (no cropping) and stay centered on mobile
   - Extra breakpoints for small phones
============================================================ */

@media (max-width:768px){

  /* Safety net: nothing should ever overflow its box */
  img{
    max-width:100%;
  }

  /* Category / Gender-Shop / How-You-Move cards:
     show the FULL image, centered, instead of cropping it */
  .card,
  .gs-card,
  .hym-card{
    background:#f2f2f2;
  }

  .card img,
  .gs-card img,
  .hym-card img{
    object-fit:contain;
    object-position:center;
  }

  /* Latest Products & Just Landed product images: full image, centered */
  .product-image,
  .jl-image{
    background:#f2f2f2;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .product-image img,
  .jl-image img{
    object-fit:contain;
    object-position:center;
  }

  /* Spotlight (Find Your Fit) icons: full icon visible */
  .spotlight-item img{
    object-fit:contain;
    object-position:center;
  }

  /* prevent any accidental horizontal scroll from wide sections */
  .insole-grid,
  .gender-shop,
  .just-landed,
  .how-you-move,
  .latest-products{
    width:100%;
    padding-left:16px;
    padding-right:16px;
  }

}

/* ==========================
   SMALL PHONES (<= 480px)
========================== */

@media (max-width:480px){

  .hero-content h1{
    font-size:30px;
    letter-spacing:2px;
  }

  .hero-content p{
    font-size:13px;
  }

  .products-header h2,
  .jl-header h2{
    font-size:20px;
  }

  .spotlight h2{
    font-size:26px;
  }

  .spotlight p{
    font-size:12px;
  }

  .spotlight-grid{
    grid-template-columns:repeat(3,1fr);
    gap:20px 10px;
  }

  .spotlight-item img{
    width:56px;
    height:56px;
  }

  .spotlight-item span{
    font-size:10px;
  }

  .hym-header h2{
    font-size:18px;
  }

  .hym-card{
    flex:0 0 88%;
    height:380px;
  }

  .card{
    height:420px;
  }

  .gs-card{
    height:240px;
  }

  .content h2{
    font-size:24px;
  }

  .content{
    left:20px;
    bottom:16px;
  }

  .checkout-form,
  .order-summary,
  .cart-left,
  .cart-right{
    padding:16px;
  }

}

/* ==========================
   VERY SMALL PHONES (<= 360px)
========================== */

@media (max-width:360px){

  header{
    padding:0 12px;
  }

  .logo{
    width:95px;
  }

  .hero-content h1{
    font-size:24px;
    letter-spacing:1px;
  }

  .spotlight-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .jl-card{
    flex:0 0 88%;
  }

}