/*!
Theme Name: mycityshop
Author: webesidetechnology
*/

/* ===== Reset spacing ===== */
body{
  margin:0;
  padding:0;
}

/* header se chipakna band */
section{
  padding:60px 0;
}

/* ===== HERO ===== */
/* ===== HERO SECTION CLEAN CSS ===== */

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;   /* padding hata do */

  background: #f4f4f4 url("http://mycityonline.shop/wp-content/uploads/2026/03/hero-banner2.png") no-repeat center center;
  background-size: cover;   /* full fill */
  
  min-height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* hero content upar */
.hero .content,
.hero-content,
.banner-content {
    position: relative;
    top: 10px; 
	
	
    
	
	/* text ko upar karega */
}

/* search/location box niche */
.hero .search-box,
.hero .form-wrap,
.hero form {
    position: relative;
    top: 40px;   /* niche karega */
}

/* BLACK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35); /* black transparent layer */
  z-index: 1;
}

/* text & search bar upar dikhe */
.hero * {
  position: relative;
  z-index: 2;
}



	/* bottom padding hata di */
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom:25px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 255px;
  opacity: 0.9;
}

/* ===== SEARCH ===== */
.hero-search {
  display: flex;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width:900px;
  margin:0 auto;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid #eee;
}

.search-field:last-child {
  border-right: none;
}

.search-field select,
.search-field input {
  border: none;
  outline: none;
  width: 100%;
  padding: 15px 10px;
  font-size: 14px;
}

.search-btn {
  background: #ff5a6e;
  color: #fff;
  border: none;
  padding: 0 30px;
  font-size: 15px;
  cursor: pointer;
}

.search-btn:hover {
  background:#0089e2;
}

/* ===== LOCATION CARD ===== */
.hero{
  padding-bottom:60px;
}

.card-wraper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top:35px;
}

.card-box {
  text-align: center;
  transition: .3s;
  cursor: pointer;
}

.card-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 12px auto;
  display: block;
}

.card-box h3 {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  color: #222;
}

.card-box:hover {
  transform: translateY(-5px);
}

/* GRID same rahega */
.store-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* BOX REMOVE - simple layout */
.store-card {
  border: none;          /* box border hata */
  border-radius: 0;
  background: transparent; /* white box hata */
  padding: 0;
  height: auto;
  box-shadow: none;
}

/* IMAGE */
.store-card img{
  width:70px;
  height:70px;
  object-fit:cover;
  margin-bottom:8px;
}
	
/* TEXT */
.store-card a{
  text-decoration: underline;
  color:#000;
  font-weight:500;
}

.store-card h4{
	font-size:16px;
}


/* HOVER EFFECT */
.store-card:hover {
  transform: translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}


/* ===== GALLERY ===== */
.gallery-section {
  padding:70px 0;
  background:#fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition:.4s;
}

.gallery-item:hover img {
  transform:scale(1.08);
}


/* ===== MOBILE PERFECT FIX ===== */
@media (max-width: 576px) {

  /* HERO IMAGE 100% RECTANGLE */
  .hero{
    min-height: auto;
    height: auto;
    padding: 0;
    background-position: center;
    background-size: cover;
  }
	.hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

  /* HERO TEXT SPACING FIX */
  .hero-content p{
    margin-bottom: 30px;
  }

  /* LOCATION CARDS 1 LINE ME 3 */
  .card-wraper {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  /* TOP STORES 1 LINE ME 3 */
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  /* WHITE EXTRA SPACE REMOVE */
  body{
    overflow-x: hidden;
  }

  section{
    padding-left: 10px;
    padding-right: 10px;
  }

  /* STORE CARD SIZE CONTROL */
  .store-card img{
    width:60px;
    height:60px;
  }

  .store-card h4{
    font-size:14px;
  }
	

/* hover par bhi white shadow na aaye */
.store-card:hover{
  box-shadow: none !important;
  background: transparent !important;
}


  /* FOOTER FULL WIDTH */
  footer{
    width:100%;
    margin:0;
    padding-left:0px;
    padding-right:15px;
  }

  .footer,
  .site-footer{
    width:100%;
    max-width:100%;
    margin:0;
  }

}
.directify_fn_footer_wrap .footer_nav_list_wrap {
    width: 93%;
}









/* old css of cta  */
.cta-section { padding: 70px 0; background: #f8f9fb; } .cta-box { background: linear-gradient(135deg,#ff5a6e,#ff8a5c); border-radius: 16px; padding: 45px 60px; display: flex; align-items: center; justify-content: space-between; color: #fff; } .cta-content h3 { font-size: 32px; font-weight: 600; margin: 0 0 10px; } .cta-content p { margin: 0; font-size: 16px; opacity: 0.95; } .cta-action { margin-left: auto; } .cta-btn { background: #ffffff; color: #ff5a6e; padding: 14px 34px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 16px; display: inline-block; transition: all 0.25s ease; white-space: nowrap; } .cta-btn:hover { background: #ffe9ec; color: #ff5a6e; } @media (max-width: 768px) { .cta-section { padding: 40px 15px; } .cta-box { flex-direction: column; align-items: flex-start; justify-content: center; padding: 28px 20px; border-radius: 14px; gap: 18px; } .cta-content { width: 100%; } .cta-content h3 { font-size: 22px; line-height: 1.4; margin-bottom: 8px; } .cta-content p { font-size: 14px; line-height: 1.6; } .cta-action { width: 100%; margin-left: 0; } .cta-btn { display: block; width: 100%; text-align: center; padding: 14px 0px; font-size: 15px; border-radius: 10px; } }