* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #080808;
  --dark: #151515;
  --white: #ffffff;
  --light: #f6f6f6;
  --gray: #666666;
  --orange: #ed1b24;
  --orange-light: #fff0f1;
  --border: #e6e6e6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

/* Header */
.ts-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.ts-nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ts-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.ts-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
}

.ts-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.ts-menu a {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  transition: 0.3s ease;
}

.ts-menu a:hover {
  color: var(--orange);
}

.ts-header-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-light);
  color: var(--black);
  border: 1px solid #ffd7b4;
  padding: 10px 14px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.ts-header-location strong {
  color: var(--orange);
}

.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 13px 23px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 800;
  border: 2px solid var(--black);
  transition: 0.3s ease;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.ts-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.ts-btn.orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.ts-btn.orange:hover {
  background: var(--black);
  border-color: var(--black);
}

.ts-btn.white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.ts-btn.white:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.ts-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.ts-hero {
  min-height: 100vh;
  padding: 135px 0 80px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ts-hero::before {
  content: "TRUSOLE";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel Decorative", serif;
  font-size: 118px;
  font-weight: 900;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  pointer-events: none;
}

.ts-hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
}

.ts-hero-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d1d1d;
  color: var(--orange);
  border: 1px solid #333;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.ts-hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 66px;
  line-height: 1.03;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.ts-hero-text h1 span {
  color: var(--orange);
}

.ts-hero-text p {
  color: #d4d4d4;
  font-size: 17px;
  line-height: 1.8;
  max-width: 590px;
  margin-bottom: 26px;
}

.ts-hero-location {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ts-hero-location a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s ease;
}

.ts-hero-location a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.ts-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ts-hero-img {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-hero-circle {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--orange);
  right: 20px;
  top: 45px;
}

.ts-hero-shoe {
  position: relative;
  z-index: 2;
  width: 590px;
  height: 390px;
  object-fit: contain;
  transform: rotate(-12deg);
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.45));
  animation: shoeFloat 4s ease-in-out infinite;
}

@keyframes shoeFloat {
  0%, 100% {
    transform: rotate(-12deg) translateY(0);
  }

  50% {
    transform: rotate(-12deg) translateY(-18px);
  }
}

.ts-floating-card {
  position: absolute;
  left: 10px;
  bottom: 50px;
  z-index: 3;
  background: var(--white);
  color: var(--black);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-left: 6px solid var(--orange);
}

.ts-floating-card h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 900;
}

.ts-floating-card p {
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
}

/* Section Head */
.ts-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
}

.ts-section-head span {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ts-section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 12px;
}

.ts-section-head p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 16px;
}


/* Infinite Marquee Banner */
.ts-marquee-zone {
  position: relative;
  height: 300px;
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  padding: 36px 0;
}

.ts-marquee-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(237, 27, 36, 0.10) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(237, 27, 36, 0.10) 25%, transparent 25%);
  background-size: 34px 34px;
  opacity: 0.20;
  z-index: 0;
}

.ts-marquee-bg-text {
  position: absolute;
  left: 50%;
  bottom: -64px;
  transform: translateX(-50%);
  font-size: clamp(90px, 18vw, 260px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.ts-marquee-strip {
  position: absolute;
  left: -12%;
  width: 124%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
  min-height: 101px;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.ts-marquee-red {
  top: 59px;
  background: #ed1b24;
  color: #ffffff;
  transform: rotate(-5deg);
}

.ts-marquee-black {
  bottom: 50px;
  background: #ffffff;
  color: #000000;
  transform: rotate(4deg);
  border-top: 6px solid #ed1b24;
  border-bottom: 6px solid #ed1b24;
}

.ts-marquee-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation-duration: 28s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.ts-marquee-track span {
  display: inline-flex;
  align-items: center;
  
  font-size: clamp(28px, 5vw, 72px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.ts-marquee-black .ts-marquee-track span {
  font-size: clamp(24px, 4.2vw, 58px);
  letter-spacing: 3px;
   
}

.ts-marquee-track span::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 34px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.ts-marquee-left {
  animation-name: tsMarqueeLeft;
}

.ts-marquee-right {
  animation-name: tsMarqueeRight;
}

.ts-marquee-strip:hover .ts-marquee-track {
  animation-play-state: paused;
}

@keyframes tsMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes tsMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

 @media (max-width:767px){

  .ts-marquee-zone{
      height:190px;
      position:relative;
  }

  .ts-marquee-red{
      top:30px;
      transform:rotate(-3deg);
  }

  .ts-marquee-black{
      top:95px;      /* bottom કાઢી નાખો */
      bottom:auto;
      transform:rotate(3deg);
  }

}



/* Store Locations */
.ts-locations {
  background: var(--white);
}

.ts-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ts-store-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  transition: 0.35s ease;
  scroll-margin-top: 110px;
}

.ts-store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.ts-store-top {
  background: var(--black);
  color: var(--white);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.ts-store-top::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--orange);
  right: -30px;
  top: -35px;
}

.ts-store-top span {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 7px 13px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.ts-store-top h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.ts-store-body {
  padding: 28px;
}

.ts-store-info {
  display: grid;
  gap: 15px;
  margin-bottom: 24px;
}

.ts-store-info li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.ts-store-info strong {
  color: var(--black);
  display: block;
  margin-bottom: 2px;
}

.ts-map {
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.ts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Categories */
.ts-categories {
  background: #f4f4f4;
}

.ts-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ts-category-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  
  overflow: hidden;
  transition: 0.35s ease;
}

.ts-category-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-8px);
}

.ts-category-card .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 20px;
}

.ts-category-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 900;
}

.ts-category-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 14px;
  max-width: 195px;
  transition: 0.3s ease;
}

.ts-category-card:hover p {
  color: #d8d8d8;
}

.ts-category-card img {
  position: absolute;
  width: 190px;
  height: 140px;
  object-fit: contain;
  right: -24px;
  bottom: -10px;
  transform: rotate(-15deg);
  transition: 0.35s ease;
}

.ts-category-card:hover img {
  transform: rotate(-15deg) translateY(-15px) scale(1.05);
}

/* Why Choose */
.ts-why {
  background: var(--black);
  color: var(--white);
}

.ts-why .ts-section-head p {
  color: #cfcfcf;
}

.ts-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ts-why-card {
  background: #171717;
  border: 1px solid #2b2b2b;
  border-radius: 26px;
  padding: 30px 25px;
  transition: 0.35s ease;
}

.ts-why-card:hover {
  background: var(--orange);
  transform: translateY(-8px);
}

.ts-why-card .why-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.ts-why-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 900;
}

.ts-why-card p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 14px;
  transition: 0.3s ease;
}

.ts-why-card:hover p {
  color: var(--white);
}

/* Reviews */
.ts-reviews {
  background: var(--white);
}

.ts-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ts-review-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  transition: 0.35s ease;
}

.ts-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.ts-stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 18px;
}

.ts-review-card p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: 15px;
}

.ts-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ts-user .letter {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.ts-user h4 {
  margin-bottom: 3px;
}

.ts-user small {
  color: var(--gray);
  font-weight: 600;
}

/* FAQ */
.ts-faq {
  background: #f4f4f4;
}

.ts-faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.ts-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.ts-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--black);
  cursor: pointer;
  text-align: left;
}

.ts-faq-question span {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s ease;
}

.ts-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
}

.ts-faq-answer p {
  padding: 0 24px 22px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
}

.ts-faq-item.active .ts-faq-answer {
  max-height: 180px;
}

.ts-faq-item.active .ts-faq-question span {
  transform: rotate(45deg);
  background: var(--black);
}

/* Contact */
.ts-contact {
  background: var(--black);
  color: var(--white);
}

.ts-contact .ts-section-head p {
  color: #cfcfcf;
}

.ts-contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
  align-items: stretch;
}

.ts-contact-info {
  background: #171717;
  border: 1px solid #2b2b2b;
  border-radius: 30px;
  padding: 36px;
}

.ts-contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 16px;
}

.ts-contact-info p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 24px;
}

.ts-store-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ts-store-toggle button {
  border: 1px solid #333;
  background: #222;
  color: var(--white);
  padding: 11px 16px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s ease;
}

.ts-store-toggle button.active,
.ts-store-toggle button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.ts-toggle-content {
  display: none;
  background: var(--orange-light);
  color: var(--black);
  border: 2px solid var(--orange);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 24px;
}

.ts-toggle-content.active {
  display: block;
}

.ts-toggle-content h4 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ts-toggle-content p {
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.ts-contact-list {
  display: grid;
  gap: 15px;
}

.ts-contact-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 14px;
}

.ts-contact-list strong {
  color: var(--white);
  display: block;
}

.ts-form {
  background: var(--white);
  color: var(--black);
  border-radius: 30px;
  padding: 36px;
  border: 1px solid var(--border);
}

.ts-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 22px;
}

.ts-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ts-field {
  margin-bottom: 18px;
}

.ts-field.full {
  grid-column: 1 / -1;
}

.ts-field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ts-field input,
.ts-field select,
.ts-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #f8f8f8;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.ts-field textarea {
  min-height: 120px;
  resize: none;
}

.ts-field input:focus,
.ts-field select:focus,
.ts-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

/* Footer */
.ts-footer {
  background: #050505;
  color: var(--white);
  padding: 55px 0 24px;
}

.ts-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 34px;
}

.ts-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}

.ts-footer-logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ts-footer p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.8;
}

.ts-footer h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.ts-footer-links {
  display: grid;
  gap: 10px;
}

.ts-footer-links a {
  color: #cfcfcf;
  font-size: 14px;
  transition: 0.3s ease;
}

.ts-footer-links a:hover {
  color: var(--orange);
}

.ts-footer-bottom {
  border-top: 1px solid #242424;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Floating WhatsApp */
.ts-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: pulse 1.8s infinite;
  font-weight: 900;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1150px) {
  .ts-header-location {
    display: none;
  }
}

@media (max-width: 1024px) {
  .ts-hero-text h1 {
    font-size: 54px;
  }

  .ts-hero::before {
    font-size: 82px;
  }

  .ts-category-grid,
  .ts-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ts-toggle {
    display: grid;
    place-items: center;
  }

  .ts-menu {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 78px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 45px;
    gap: 24px;
    transition: 0.35s ease;
    border-top: 1px solid var(--border);
  }

  .ts-menu.active {
    left: 0;
  }

  .ts-nav .ts-btn {
    display: none;
  }

  .ts-hero-wrap,
  .ts-location-grid,
  .ts-contact-wrap {
    grid-template-columns: 1fr;
  }

  .ts-hero {
    min-height: auto;
  }

  .ts-hero-img {
    min-height: 430px;
  }

  .ts-hero-circle {
    width: 330px;
    height: 330px;
    right: auto;
    top: 50px;
  }

  .ts-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }

  .ts-nav {
    height: 70px;
  }

  .ts-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .ts-logo img {
    height: 44px;
    max-width: 260px;
  }

  .ts-hero {
    padding: 110px 0 60px;
  }

  .ts-hero::before {
    font-size: 42px;
    top: 55%;
  }

  .ts-hero-text h1 {
    font-size: 42px;
  }

  .ts-hero-text p {
    font-size: 15px;
  }

  .ts-hero-img {
    min-height: 340px;
  }

  .ts-hero-circle {
    width: 250px;
    height: 250px;
  }

  .ts-hero-shoe {
    width: 100%;
    height: 270px;
  }

  .ts-floating-card {
    left: 0;
    bottom: 16px;
    padding: 14px 16px;
  }

  .ts-section-head h2,
  .ts-store-top h3,
  .ts-contact-info h3,
  .ts-form h3 {
    font-size: 32px;
  }

  .ts-category-grid,
  .ts-why-grid,
  .ts-form-grid,
  .ts-footer-grid {
    grid-template-columns: 1fr;
  }

  .ts-contact-info,
  .ts-form,
  .ts-store-body {
    padding: 24px;
  }

  .ts-footer-bottom {
    text-align: center;
    justify-content: center;
  }
}


/* Sticky Navigation Animation */
.ts-header {
  transform: translateY(0);
  animation: tsHeaderDrop 0.65s ease both;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

@keyframes tsHeaderDrop {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ts-nav {
  transition: height 0.35s ease;
}

.ts-logo img {
  transition: height 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.ts-menu a {
  position: relative;
  padding: 8px 0;
}

.ts-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 10px;
  transition: width 0.3s ease;
}

.ts-menu a:hover::after,
.ts-menu a.active::after {
  width: 100%;
}

.ts-menu a.active {
  color: var(--orange);
}

.ts-header.scrolled {
  background: rgba(8, 8, 8, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.ts-header.scrolled .ts-nav {
  height: 68px;
}

.ts-header.scrolled .ts-menu a {
  color: #ffffff;
}

.ts-header.scrolled .ts-menu a:hover,
.ts-header.scrolled .ts-menu a.active {
  color: var(--orange);
}

.ts-header.scrolled .ts-logo img {
  height: 44px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.ts-header.scrolled .ts-header-location {
  background: rgba(255, 122, 0, 0.14);
  border-color: rgba(255, 122, 0, 0.38);
  color: #ffffff;
}

.ts-header.scrolled .ts-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.ts-header.scrolled .ts-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--black);
}

.ts-header.hide-on-scroll {
  transform: translateY(-100%);
}

@media (max-width: 900px) {
  .ts-header.scrolled .ts-menu a {
    color: #222222;
  }

  .ts-header.scrolled .ts-menu a:hover,
  .ts-header.scrolled .ts-menu a.active {
    color: var(--orange);
  }

  .ts-header.scrolled .ts-toggle {
    background: var(--orange);
  }
}

@media (max-width: 600px) {
  .ts-header.scrolled .ts-nav {
    height: 64px;
  }

  .ts-header.scrolled .ts-logo img {
    height: 39px;
  }
}

/* ==================================================
   TRUE SOLE RED + BLACK ALTERNATIVE THEME
   Requested colors: #ed1b24 + #000000
   ================================================== */
:root {
  --black: #000000;
  --dark: #0b0b0b;
  --orange: #ed1b24;
  --orange-light: #fff0f1;
  --border: #e8e8e8;
}

body {
  background: #000000;
}

.ts-header {
  background: rgba(255, 255, 255, 0.98);
}

.ts-header.scrolled {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(237, 27, 36, 0.45);
}

.ts-header.scrolled .ts-header-location {
  background: #ed1b24;
  border-color: #ed1b24;
  color: #ffffff;
}

.ts-header.scrolled .ts-header-location strong {
  color: #ffffff;
}

.ts-hero {
  background: #000000;
}

.ts-hero-circle,
.ts-store-top::after,
.ts-category-card .icon,
.ts-why-card:hover,
.ts-user .letter,
.ts-store-top span,
.ts-faq-question span,
.ts-store-toggle button.active,
.ts-store-toggle button:hover,
.ts-btn.orange,
.ts-whatsapp {
  background: #ed1b24;
}

.ts-btn.orange,
.ts-store-toggle button.active,
.ts-store-toggle button:hover {
  border-color: #ed1b24;
}

.ts-btn:hover,
.ts-order-btn:hover,
.ts-social a:hover {
  background: #ed1b24;
  border-color: #ed1b24;
}

.ts-hero-text h1 span,
.ts-section-head span,
.ts-price,
.ts-product-info .cat,
.ts-footer-links a:hover,
.ts-menu a:hover,
.ts-menu a.active {
  color: #ed1b24;
}

/* 01 Red Section */
.ts-locations {
  background: #ed1b24;
  color: #ffffff;
}

.ts-locations .ts-section-head span,
.ts-locations .ts-section-head h2,
.ts-locations .ts-section-head p {
  color: #ffffff;
}

.ts-locations .ts-store-card {
  background: #ffffff;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.12);
}

.ts-locations .ts-store-top {
  background: #000000;
}

/* 02 Black Section */
.ts-categories {
  background: #000000;
  color: #ffffff;
}

.ts-categories .ts-section-head h2,
.ts-categories .ts-section-head p {
  color: #ffffff;
}

.ts-categories .ts-category-card {
  background: #ffffff;
  color: #000000;
  border-color: rgba(255, 255, 255, 0.18);
}

.ts-categories .ts-category-card:hover {
  background: #ed1b24;
  color: #ffffff;
}

.ts-categories .ts-category-card:hover p {
  color: #ffffff;
}

/* 03 Red Section */
.ts-why {
  background: #ed1b24;
  color: #ffffff;
}

.ts-why .ts-section-head span,
.ts-why .ts-section-head h2,
.ts-why .ts-section-head p {
  color: #ffffff;
}

.ts-why-card {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.18);
}

.ts-why-card:hover {
  background: #ffffff;
  color: #000000;
}

.ts-why-card p {
  color: rgba(255, 255, 255, 0.78);
}

.ts-why-card:hover p {
  color: #333333;
}

/* 04 Black Section */
.ts-reviews {
  background: #000000;
  color: #ffffff;
}

.ts-reviews .ts-section-head h2,
.ts-reviews .ts-section-head p {
  color: #ffffff;
}

.ts-review-card {
  background: #ffffff;
  color: #000000;
  border-color: rgba(255, 255, 255, 0.18);
}

.ts-review-card p,
.ts-user small {
  color: #555555;
}

/* 05 Red Section */
.ts-faq {
  background: #ed1b24;
  color: #ffffff;
}

.ts-faq .ts-section-head span,
.ts-faq .ts-section-head h2,
.ts-faq .ts-section-head p {
  color: #ffffff;
}

.ts-faq-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}

.ts-faq-item.active .ts-faq-question span {
  background: #000000;
}

/* 06 Black Section */
.ts-contact {
  background: #ed1b24;
}

.ts-contact-info {
  background: #0b0b0b;
  border-color: rgba(237, 27, 36, 0.45);
}

.ts-toggle-content {
  background: #ffffff;
  border-color: #ed1b24;
}

.ts-form {
  border-top: 7px solid #ed1b24;
}

/* Footer Red */
.ts-footer {
  background: #000000;
  color: #ffffff;
}

.ts-footer p,
.ts-footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.ts-footer h4 {
  color: #ffffff;
}

.ts-footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.ts-footer-links a:hover {
  color: #ed1b24;
}

/* More premium red-black cards */
.ts-store-card,
.ts-category-card,
.ts-why-card,
.ts-review-card,
.ts-faq-item,
.ts-form,
.ts-contact-info {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

@media (max-width: 900px) {
  .ts-header.scrolled .ts-menu {
    background: #000000;
  }
}


@media (max-width: 768px) {
  .ts-marquee-zone {
    height: 220px;
    padding: 24px 0;
  }

  .ts-marquee-strip {
    left: -18%;
    width: 136%;
    min-height: 86px;
  }

  .ts-marquee-red {
    top: 11px;
  }

  .ts-marquee-black {
    bottom: 38px;
  }

  .ts-marquee-track span {
    padding: 22px 24px 20px;
    line-height: 1.18;
    letter-spacing: 2px;
  }

  .ts-marquee-track span::after {
    width: 10px;
    height: 10px;
    margin-left: 24px;
  }
}

@media (max-width: 480px) {
  .ts-marquee-zone {
    height: 185px;
  }

  .ts-marquee-bg-text {
    bottom: -28px;
    letter-spacing: 4px;
  }

  .ts-marquee-track {
    animation-duration: 22s;
  }
}


/* Store Selector Landing Page */
.ts-selector-body {
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
}

.ts-selector-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(237, 27, 36, 0.24), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(237, 27, 36, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.04) 0 10%, transparent 10% 20%);
  pointer-events: none;
  z-index: 0;
}

.ts-selector-header {
  position: relative;
  z-index: 2;
  padding: 24px 0;
}

.ts-selector-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ts-selector-logo img {
  display: block;
  height: 70px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
}

.ts-selector-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: rgba(237, 27, 36, 0.16);
  border: 1px solid rgba(237, 27, 36, 0.55);
  padding: 11px 17px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ts-selector-main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  padding: 55px 0 80px;
  overflow: hidden;
}

.ts-selector-main::before {
  content: "TRUSOLE";
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(58px, 13vw, 180px);
  font-weight: 900;
  letter-spacing: 9px;
  color: rgba(255,255,255,0.045);
  white-space: nowrap;
  pointer-events: none;
}

.ts-selector-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

.ts-selector-intro .tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ed1b24;
  color: #ffffff;
  padding: 9px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.ts-selector-intro h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 16px;
}

.ts-selector-intro h1 span {
  color: #ed1b24;
}

.ts-selector-intro p {
  color: #d5d5d5;
  font-size: 17px;
  line-height: 1.8;
}

.ts-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.ts-select-card {
  position: relative;
  min-height: 440px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background: #101010;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: 0.45s ease;
}

.ts-select-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.82));
  z-index: 2;
}

.ts-select-card::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 150px;
  left: -10%;
  top: 32px;
  background: #ed1b24;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: 0.94;
  transition: 0.45s ease;
}

.ts-select-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(237, 27, 36, 0.24);
  border-color: rgba(237, 27, 36, 0.75);
}

.ts-select-card:hover::after {
  top: 20px;
  transform: rotate(-4deg) scale(1.04);
}

.ts-select-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.02);
  transition: 0.55s ease;
}

.ts-select-card:hover img {
  transform: scale(1.08);
  opacity: 1;
}

.ts-select-card-content {
  position: relative;
  z-index: 3;
  padding: 32px;
  width: 100%;
}

.ts-select-card-content .city-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #000000;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ts-select-card-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 11px;
  color: #ffffff;
}

.ts-select-card-content p {
  color: #eeeeee;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 430px;
}

.ts-select-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ed1b24;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.35s ease;
}

.ts-select-card:hover .ts-select-arrow {
  background: #ffffff;
  color: #000000;
  transform: translateX(6px);
}

.ts-store-page .ts-header-location strong,
.ts-store-page .ts-hero-text h1 span {
  color: #ed1b24;
}

.ts-store-single-location .ts-location-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

.ts-change-store {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ts-selector-logo img {
    height: 56px;
    max-width: 290px;
  }

  .ts-selector-badge {
    display: none;
  }

  .ts-selector-grid {
    grid-template-columns: 1fr;
  }

  .ts-select-card {
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .ts-selector-header {
    padding: 18px 0;
  }

  .ts-selector-logo img {
    height: 48px;
    max-width: 250px;
  }

  .ts-selector-main {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .ts-selector-intro h1 {
    font-size: 38px;
  }

  .ts-selector-intro p {
    font-size: 15px;
  }

  .ts-select-card {
    min-height: 330px;
    border-radius: 26px;
  }

  .ts-select-card-content {
    padding: 24px;
  }

  .ts-select-card-content h2 {
    font-size: 34px;
  }
}


/* User shoe image fit fixes */
.ts-hero-shoe {
  object-fit: contain;
  background: #101010;
  padding: 14px;
}

.ts-category-card img {
  object-fit: contain;
  background: #111111;
  padding: 8px;
}

.ts-select-card img {
  object-fit: contain;
  background: #111111;
  padding: 34px;
}

@media (max-width: 600px) {
  .ts-select-card img {
    padding: 22px;
  }
}


.ts-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.ts-social-icons span {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.ts-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #ed1b24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.ts-social-icons a svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.ts-social-icons a:hover {
  background: #ed1b24;
  color: #ffffff;
  transform: translateY(-3px);
}


.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #e31e25;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #000000;
  transform: translateY(-4px);
}

.back-to-top.show {
  display: flex;
}

@media (max-width: 575px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}



.logo-section{
    padding:0px 0;
    
}

.logo-slider{
    overflow:hidden;
    white-space:nowrap;
    position:relative;
}

.logo-track{
    display:inline-flex;
    animation:scroll 20s linear infinite;
}

.logo{
    width:180px;
    height:100px;
    margin:0 20px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    width:120px;
    max-height:60px;
    object-fit:contain;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Tablet */
@media(max-width:768px){

.logo{
    width:140px;
    height:80px;
}

.logo img{
    width:90px;
}

}

/* Mobile */
@media(max-width:480px){

.logo{
    width:110px;
    height:70px;
    margin:0 10px;
}

.logo img{
    width:70px;
}

}



/* ===========================
Powered Section
=========================== */

.ts-powered{
    padding:80px 20px;
    background:#000000;
}

.ts-powered-wrap{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.ts-powered-tag{
    display:inline-block;
    background:#E53935;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.ts-powered h2{
    font-size:42px;
    font-weight:700;
    color:#ffffff;
    line-height:1.3;
    margin-bottom:20px;
}

.ts-powered h2 span{
    color:#E53935;
}

.ts-powered p{
    max-width:760px;
    margin:auto;
    color:#ffffff;
    font-size:17px;
    line-height:1.8;
}

.ts-powered-stats{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.ts-stat{
    padding:35px 20px;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.ts-stat:hover{
    transform:translateY(-10px);
}

.ts-stat.red{
    background:#E53935;
    color:#fff;
}

.ts-stat.black{
    background:#111;
    color:#fff;
}

.ts-stat h3{
    font-size:52px;
    margin-bottom:10px;
    font-weight:800;
    color:#fff;
}

.ts-stat span{
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.ts-powered-footer{
    margin-top:55px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#111;
    color:#fff;
    padding:18px 35px;
    border-radius:60px;
    font-weight:600;
}

.ts-powered-footer strong{
    color:#ff4d4d;
}

@media(max-width:991px){

.ts-powered-stats{
grid-template-columns:1fr;
}

.ts-powered h2{
font-size:32px;
}

}

@media(max-width:576px){

.ts-powered{
padding:60px 15px;
}

.ts-powered h2{
font-size:26px;
}

.ts-powered p{
font-size:15px;
}

.ts-stat h3{
font-size:42px;
}

.ts-powered-footer{
display:flex;
flex-direction:column;
border-radius:18px;
font-size:16px;
}

}
