*{
    padding :0;
    margin:0;
    box-sizing: border-box;
    font-family:'Open Sans',sans-serif;
    list-style: none;
    text-decoration: none !important;
    scroll-behavior: smooth; 
   
}
  :root {
    --primary-color: #002B5C;    /* Dark Blue */
    --secondary-color: #FF6600;  /* Orange */
    --accent-color: #004AAD;     /* Blue Accent */
    --text-dark: #002B5C;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 6px 18px rgba(0,43,92,0.1);
    --shadow-hover: 0 10px 25px rgba(0,43,92,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease-in-out;
    
    /* Legacy variables for backward compatibility */
    --bg-color: var(--bg-white);
    --text-color: var(--text-dark);
    --main-color: var(--secondary-color);
    --h2-font: 3.3rem;
    --h3-font: 2rem;
    --normal-font: 1rem;
  }
body{
    background: var(--bg-color);
    color: var(--text-color);
  }
  header{
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    padding: 20px 14%;
    transition: all .35s ease; 
  }
  .logo{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color:var(--text-color);
  }
  .navlist{
     display: flex;
  }
  .navlist a{
    color: var(--text-color);
    font-weight: 600;
    padding: 10px;
    font-size: var(--normal-font);
    transition: all .36s ease;

  }
  .navlist a:hover{
     color: var(--main-color);  
  }
  .header-icons i{
        font-size: 32px;
        color: var(--text-color);
        margin-right: 20px;
        transition: all .36s ease;
  }
  .header-icons i:hover{
    color: var(--main-color);

  }
  #menu-icon{
    font-size: 34px;
    color: var(--text-color);
    z-index: 10001; 
    margin-right: 20px;
    display: none;
  }
  section{
    padding: clamp(24px, 6vw, 100px) clamp(12px, 4vw, 64px);
  }
  .home{
    min-height: 100vh;
    width: 100%;
    /* background: url(../image/ogShoes.jpg); */
    background-size: cover;
    background-position: center top;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    align-items: center;
  }
.home-txt h1{
   font-size: var(--big--font);
   font-weight: 800;
   line-height: 1.2;
   letter-spacing: .6rem;
   margin-bottom: 1.4rem;
}
/* Banner / Hero button & utility styles */
.hero-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.hero-btn { padding: 12px 26px; border-radius: 999px; font-weight:600; display:inline-flex; align-items:center; gap:10px; }
/* hero image collage styles */
.hero-image-collage { border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); max-height: 420px; object-fit:cover; width:100%; }
.hero-btn.btn-outline-light{ color:#fff; border:1px solid rgba(255,255,255,0.22); background:transparent; }
.hero-btn.btn-outline-light:hover{ background: rgba(255,255,255,0.06); }

/* Multi-line truncation utilities */
.truncate-1{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.truncate-2{ overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
.truncate-3{ overflow:hidden; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; }

.home-txt span{
   font-size: var(--h2-font);
}
.home-txt p{
  font-size: var(--normal-font);
  font-weight: 500;
  margin-bottom: 3rem;
  letter-spacing: .2rem;
}
/* .btn{
  display: inline-block!important;
  padding: 13px 25px!important;
  background: var(--main-color)!important;
  color: var(--bg-color)!important;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 5px;
  transition: all .35s ease;
}
.btn:hover{
     transform: translateY(-5px);
     background: var(--text-color);
} */
.btnc {
    display: inline-block !important;
    padding: 13px 25px !important;
    background: var(--main-color) !important;
    color: var(--bg-color) !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    transition: all 0.35s ease !important;
}

.btnc:hover {
    transform: translateY(-5px) !important;
    background: var(--text-color) !important;
}
/* .featured-content img{
   height: 150px;
   width: 130px;
} */
header.sticky{
  background:var(--bg-color);
  padding: 14px 14%;
  box-shadow: 0px 0px 10px rgb(0 0 0 /10%);
}
/* Ensure images are responsive by default (global rule) */
img { max-width: 100%; height: auto; display: block; }
.center-text{
   text-align: center;
}
.center-text h2{
  font-size: var(--h3-font);
}
.featured-content{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(350px,auto));
  gap: 1.3rem;
  align-items: center;
  margin-top: 4rem;
}
.row{
  position: relative;
  transition:all .35s ease;
}
.row img{
  width: 100%;
  height: auto;
}
.fea-text{
  position: absolute;
  top: 40px;
  left: 50px;
}
.fea-text h5{
  font-size: 19px;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.fea-text p{
  color: #555;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 400;  
}
.row .arrow{
  position: absolute;
  bottom: 40px;
  left: 50px;
}
.row .arrow i{
  height: 35px;
  width: 35px;
  background: var(--bg-color);
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease;
}
.row:hover{
   transform: scale(0.9) translateY(-5px);
   cursor: pointer;
}
.row:hover i{
  background: var(--main-color);
  color: var(--bg-color);
}
.cta{
  height: 60vh;
  width: 100%;
  background: url(../image/niceshoes.jpeg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.cta-text h6{
   font-size: 17px;
   font-weight: 500;
   letter-spacing: 6px;
   margin-bottom: 14px;
}
.new-content{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,auto));
  gap: 1.3rem;
  align-items: center;
  margin-top: 4rem;
  text-align: center;
}

/* Responsive improvements and mobile-friendly rules */
/* Reduce large paddings on narrow screens */
header, .site-header, section, .container, .container-fluid {
  padding-left: clamp(12px, 4vw, 64px);
  padding-right: clamp(12px, 4vw, 64px);
}

.logo-img { max-height: 100px; height: auto; width: auto; }
@media (max-width: 768px) {
  .logo-img { max-height: 64px; }
  header { padding: 12px 2rem; }
  /* Increase tappable area for nav links on small screens */
  .site-header .navbar-nav .nav-link { padding: 12px 0.75rem; font-size: 0.95rem; }
  /* Expand toggler hit area */
  .navbar .navbar-toggler { padding: 0.5rem; min-height: 44px; min-width: 44px; }
  .navbar .navbar-toggler .navbar-toggler-icon { background-size: 1.5rem; }
}

/* Limit collapsed navbar height and make it scrollable on smaller viewports */
@media (max-width: 768px) {
  .navbar-collapse {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Navbar toggler spacing for small screens */
.navbar .navbar-toggler {
  border: none;
}

/* Product grid adjustments */
.product-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.product-image.img-fluid { width: 100%; height: auto; /* fallback for product image sizing */ }

/* Global card styles for uniform product, collection, and category layout */
.product-card, .collection-card, .category-card {
  display:flex; flex-direction:column; justify-content:space-between;
  border-radius: var(--border-radius); padding: 0.9rem; background: var(--bg-white); box-shadow: var(--shadow);
}
.product-card { min-height: 360px; }
.product-card .product-content, .collection-card .collection-content, .category-card .category-meta { flex: 1 1 auto; display:flex; flex-direction:column; }
.product-card .product-image { aspect-ratio: 4/3; object-fit: cover; width: 100%; height: auto; border-radius: var(--border-radius); }
.product-card .product-title { font-size: 1.05rem; font-weight: 700; }
.product-actions { display:flex; gap:10px; align-items:center; }
.product-actions .like-btn { border:none; background:transparent; padding:0; }
.product-price { font-weight: 800; color: var(--secondary-color); font-size:1.05rem; }

/* Product badge and action appearance */
.product-badge { position:absolute; top:12px; left:12px; background:var(--secondary-color); color:#fff; padding:6px 10px; border-radius:8px; font-weight:700; font-size:0.85rem; }
.product-card .product-actions{ opacity:0; transition:var(--transition); }
.product-card:hover .product-actions, .product-card:focus-within .product-actions { opacity:1; }
.product-card .product-content .d-grid a { align-self:stretch; }

/* utility text truncate */
.truncate { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
@media (max-width: 768px) {
  .product-card { min-height: 0; }
  .product-card .product-image { aspect-ratio: 3/2; }
}

/* Collection overlay global style */
.collection-overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: linear-gradient(to bottom, rgba(0,43,92,0.85), rgba(0,74,173,0.9));
  color: white; display:flex; align-items:center; justify-content:center; opacity:0; transition: var(--transition); z-index:1; pointer-events:auto;
}
.collection-card-wrapper:hover .collection-overlay{ opacity: 1; }
.category-image{ width:100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--border-radius); }

@media (max-width: 768px) {
  .collection-overlay{ opacity:1; position:relative; background: linear-gradient(to bottom, rgba(0,43,92,0.6), rgba(0,74,173,0.65)); }
  .hero-actions{ flex-direction:column; gap:12px; }
}

/* Card wrapper utilities to preserve looping link behaviours and focus states */
.category-card-wrapper, .collection-card-wrapper { display:block; height:100%; text-decoration:none; color:inherit; }
.category-card-wrapper:focus, .collection-card-wrapper:focus { outline: 3px solid rgba(0,43,92,0.12); outline-offset: 4px; }

/* Smooth card lift effect */
.product-card, .collection-card, .category-card { transition: transform .28s ease, box-shadow .28s ease; }
.product-card:hover, .collection-card:hover, .category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.collection-card-wrapper:focus, .category-card-wrapper:focus, .product-card:focus { outline: 3px solid rgba(0,43,92,0.12); outline-offset: 4px; }

/* Button touch targets */
.btn { padding: .55rem 1rem; min-height: 44px; min-width: 44px; }

/* Prevent horizontal scroll on some devices */
html, body { overflow-x: hidden; }

/* Responsive headings */
h1 { font-size: clamp(1.4rem, 4.6vw, 2.5rem); }
h2 { font-size: clamp(1.15rem, 3.2vw, 1.75rem); }
/* Headings use Playfair for a premium look; use Inter for body text */
h1,h2,h3,h4,h5{ font-family: 'Playfair Display', serif; color: var(--text-dark); }

/* Minor: improve drop-down experience on mobile */
.dropdown-submenu .collapse { padding-left: .5rem; }
.box{
  position: relative;
  transition: all .40s ease;
}
.box img{
   width: 100%;
   height: auto;
   margin-bottom: 20px;
   border-radius: 10px;
}
.box h5{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.box h6{
  font-size: 16px;
  font-weight: 700;
}
.sale{
  position: relative;
  top: 0;
  left: 0;
  width: 60px;
  background: var(--main-color);
  color: var(--bg-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.box:hover{
  transform: scale(0.9) translateY(-5px);
  cursor: pointer;
}
.brand{
  padding: 50px 14px;
}
.brand-content{
   display: grid;
   grid-template-columns: repeat(auto-fit,minmax(150px,auto));
   gap: 2rem;
   align-items: center;
   justify-content: center;
}
.main img{
   width: 100%;
   height: auto;
   opacity: 0.6;
   transition: all .35s ease;
   cursor: pointer;
}
.main img:hover{
  opacity: 1;
}
.contact{
  background: var(--text-color);
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,auto));
  gap: 2rem;
}
.main-contact h3{
     font-size: 23px;
     margin-bottom: 1.6rem;
     color: var(--bg-color);
}
.main-contact h3{
  font-size: 15px;
  font-weight: 600;
  color: #555;
}
.icons{
  display: flex;
  margin-top: 2rem;
}
.icons i{
  font-size: 25px;
  margin-right:1rem ;
  color: #555;
  transition: all .35s ease;
}
.icons i:hover{
    color: var(--bg-color);
    transform: scale(1.1) translateY(-5px);
}
.main-contact li{
   margin-bottom: 15px;
}
.main-contact li a{
  display: block;
  color: #555;
  font-size: var(--normal-font);
  font-weight: 600;
  transition: all .35s ease;
}
.last-text{
  text-align: center;
  padding: 20px;
  background-color: var(--text-color);
}
.last-text p{
   color: #555;
   font-size: 14px;
   letter-spacing: 1px;
}
.top{
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}
.top i{
  font-size: 22px;
  color: var(--bg-color);
  padding: 14px;
  background: var(--main-color);
  border-radius: 2rem;
}
#srv{
    margin-top: -2px;
}

/* ===== About Page Styles (Enhanced) ===== */
/* Header utilities for single-line nav */
.site-header .navbar-nav .nav-link{ white-space: nowrap; }
.site-header .navbar-brand{ white-space: nowrap; }
.site-header .navbar-nav{ gap: 8px; }
.site-header form[role="search"]{ min-width: 340px; }

/* Reduce search width on small screens so it doesn't push other elements off-screen */
@media (max-width: 576px) {
  .site-header form[role="search"]{ min-width: 180px; max-width: 60vw; }
  .site-header .navbar-brand{ margin-right: 0.5rem; }
}

/* Reduce hero section height on small devices to avoid excessive vertical scrolling */
@media (max-width: 576px) {
  .hero-section, .home { min-height: 55vh; padding: 30px 1rem; }
  .hero-btn { padding: 10px 18px; font-size: 0.95rem; }
  section { padding: 40px 1rem; }
}
.site-header .navbar-nav.ms-auto .nav-link{ white-space: nowrap; }
@media (max-width: 1200px){ .site-header form[role="search"]{ min-width: 280px; } }
@media (max-width: 992px){ .site-header .navbar-nav{ gap: 0; } }
.about-hero{
  padding: 90px 0 70px;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(99,102,241,0.12), transparent 60%),
              radial-gradient(1000px 500px at 110% 10%, rgba(236,72,153,0.10), transparent 60%),
              linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.about-hero.has-image{
  background: linear-gradient(180deg, rgba(15,23,42,0.02), rgba(15,23,42,0.02)),
              radial-gradient(1200px 600px at 10% -10%, rgba(99,102,241,0.10), transparent 60%),
              radial-gradient(1000px 500px at 110% 10%, rgba(236,72,153,0.08), transparent 60%),
              #ffffff;
}
.about-mission{ padding: 40px 0; }
.about-how{ padding: 20px 0 10px; }
.about-customers-sellers{ padding: 40px 0; background: #ffffff; }
.about-trust{ padding: 40px 0; background: #f8fafc; }
.about-cta{ padding: 70px 0; background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); color: #ffffff; }

.about-container{ max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.about-title{ font-size: 48px; margin: 0 0 12px; color: #0f172a; letter-spacing: -0.5px; }
.about-subtitle{ font-size: 18px; color: #334155; margin: 0; }

.about-hero-media{ display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.about-hero-art{ width: 100%; height: 280px; border-radius: 16px; background: url('../image/ogShoes.jpg') center/cover no-repeat, linear-gradient(135deg,#e2e8f0,#f8fafc); box-shadow: 0 20px 50px rgba(2,6,23,0.08); }
.about-hero-img{ width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 20px 50px rgba(2,6,23,0.08); }

.about-metrics{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 28px; }
.about-metric{ background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px 18px; text-align: center; box-shadow: 0 8px 24px rgba(15,23,42,0.06); }
.about-metric h4{ margin: 0; font-size: 24px; color: #0f172a; }
.about-metric p{ margin: 4px 0 0; font-size: 13px; color: #667085; }

.about-h2{ font-size: 28px; margin-bottom: 12px; color: #0f172a; }
.about-text{ font-size: 16px; color: #475569; line-height: 1.7; margin: 0; }
.about-list{ list-style: none; padding: 0; margin: 0; }
.about-list li{ margin-bottom: 10px; color: #475569; }
.about-list strong{ color: #0f172a; }

.about-grid{ display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.about-card{ grid-column: span 6; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; background: #ffffff; box-shadow: 0 10px 30px rgba(2,6,23,0.06); }
.about-card i{ color: var(--main-color); margin-right: 8px; }
.about-card h3{ font-size: 22px; margin: 0 0 8px; color: #0f172a; }
.about-card ul{ padding-left: 18px; margin: 10px 0 0; color: #475569; }

.about-cta-text{ font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 760px; margin: 0 auto 18px; }
.about-cta-strong{ font-size: 18px; color: #ffffff; font-weight: 600; margin: 0; }

@media (max-width: 992px){
  .about-hero-media{ grid-template-columns: 1fr; }
  .about-metrics{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-card{ grid-column: span 12; }
}
@media (max-width: 576px){ .about-title{ font-size: 36px; } }

/* Gallery strip */
.about-gallery{ padding: 20px 0 40px; background: #ffffff; }
.about-gallery-grid{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.about-gallery-grid img{ width: 100%; height: 160px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 24px rgba(2,6,23,0.06); }
@media (max-width: 992px){ .about-gallery-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }