:root {
  --maroon: #580c10;
  --maroon-deep: #4b080c;
  --cream: #efe4da;
  --paper: #f7f1ec;
  --sand: #ddc3af;
  --copper: #a85a38;
  --gold: #c49a6c;
  --indigo: #2b174c;
  --blue: #404d78;
  --text: #5d1518;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Helvetica Neue LT Arabic", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 579px;
  /* overflow: hidden; */
  color: #fff;
  background: radial-gradient(38.86% 102.06% at 100% 0%, #FE643C 0%, #00008A 100%)
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -45px;
  left: 0;
  height: 116px;
  content: "";
  background-image: url("/assets/crafts/svg/site-pattern.svg");
  background-repeat: repeat-x;
  background-position: center bottom;

  pointer-events: none;

  
}

.topbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  /* min-height: 132px; */
  padding-top: 24px;
  direction: ltr;
}

.site-nav {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 38px;
 height: 80px;
 line-height: 80px;
  color: #f6e9df;
  font-size: 14px;
  font-weight: 700;
  direction: rtl;
}

.brand-lockup {
  grid-row: 1;
  grid-column: 2;
  /* width: 210px;
  height: 100px; */
  object-fit: contain;
}

.language-link {
  grid-row: 1;
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 80px;
  line-height: 80px;;
  color: #f6e9df;
  font-size: 15px;
  font-weight: 700;
}

.menu-toggle {
  grid-row: 1;
  grid-column: 3;
  justify-self: end;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(246, 233, 223, 0.75);
  border-radius: 0;
  background: #efe4da;
  color: var(--maroon);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(246, 233, 223, 0.34);
  outline-offset: 4px;
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.globe {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/assets/crafts/svg/language-icon.svg);
}



.hero-copy {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  text-align: center;
}

.hero h1,
.category-section h2,
.province-section h2,
.artisans-section h2 {
  margin: 0;
  font-weight: 800;
  color:00008A;

}

.hero h1 {
  font-size: clamp(34px, 2.5vw, 46px);
  line-height: 1.24;
}

#hero-title{
  font-size: 32px;
  font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;
}
#category-title{
    font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;

}
#province-title{
      font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;
      font-size: 24px;
}
#artisans-title{
        font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;

}
.hero-copy p {
  max-width: 650px;
  margin: 56px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
}

.search-band {
  position: relative;
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: center;
  width: min(638px, 100%);
  min-height: 56px;
  margin: 56px auto 0;
  padding: 0 8px;
  background:#fff;
  direction: ltr;
}

.search-band::before,
.search-band::after {
  position: absolute;
  top: 17px;
  width: 28px;
  height: 20px;
  content: "";

}

.search-band::before {
  left: -23px;
  background-image: url(/assets/crafts/svg/search-pattern.svg);
  transform: rotate(-90deg);

}

.search-band::after {
  right: -23px;
    background-image: url(/assets/crafts/svg/search-pattern.svg);
    transform: rotate(90deg);
}

.search-band input {
  min-width: 0;
  height: 42px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #00008A;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
  direction: rtl;
    font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;

}

.search-band input::placeholder {
   color: #00008A;
  opacity: 1;
;
}

.search-band button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 39px;
  border: 0;
  background: #FE643C;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-inline-end: 6px;
  background: url(/assets/crafts/svg/searchicon.svg);
}

.search-icon::after {
  position: absolute;
 
  width: 16px;
  height: 16px;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.popular-searches {
  display: flex;
  justify-content: right;
  gap: 8px;
  width: min(638px, 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: auto;
  margin-top: 16px;

}

.popular-searches span {
  color: #FE643C;

}

.popular-searches a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-section {
  background: #fff;

  text-align: center;
  padding: 104px 0px 88px;
gap: 48px;
}

.category-section h2,
.province-section h2,
.artisans-section h2 {
  color: #00008A;
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.25;
}
#category-title{
  font-size: 24px;
  font-weight: bold;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(7, 148px);
  justify-content: center;
  gap: 44px;
  margin-top: 48px;
  direction: rtl;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  direction: rtl;
}

.category-card img {
  display: block;
  /* width: 148px;
  height: 154px; */
  object-fit: cover;
}

.category-card span {
  display: block;
  width: 180px;
  min-height: 52px;
  margin-top: 21px;
  color:#00008A;
  font-size: 14px;
}

.tone-copper {
  color: var(--copper);
}

.tone-indigo {
  color: var(--indigo);
}

.tone-maroon {
  color: var(--maroon);
}

.tone-blue {
  color: var(--blue);
}

.province-section {
  position: relative;
  background: #F4F5F6;
  padding: 78px 0 54px;
  text-align: center;
}
#province-title{
  color: #FE643C;
}
.province-section::before,
.province-section::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 42px;
  content: "";
  background-image: url("/assets/crafts/svg/Craftsmanbackground.svg");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 1728px 42px;
  pointer-events: none;
}

.province-section::before {
  top: -21px;
}

.province-section::after {
  bottom: -21px;
  transform: rotate(180deg);
}

.province-layout {
  display: grid;
  grid-template-columns: 318px 493px 360px;
  justify-content: center;
  align-items: start;
  gap: 50px;
  margin-top: 40px;
  direction: ltr;
}

.map-stage {
  --marker-left: 73%;
  --marker-top: 36%;
  position: relative;
  width: 493px;
  aspect-ratio: 493 / 598;
  isolation: isolate;
}

/* .oman-map {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.map-region-glow,
.map-pin,
.map-tooltip {
  position: absolute;
  z-index: 1;
  left: var(--marker-left);
  top: var(--marker-top);
  pointer-events: none;
}

.map-region-glow {
  width: 84px;
  height: 84px;
  border: 2px solid rgba(88, 12, 16, 0.32);
  border-radius: 50%;
  background: rgba(88, 12, 16, 0.12);
  box-shadow: 0 0 0 14px rgba(88, 12, 16, 0.08);
  transform: translate(-50%, -50%);
  transition: left 360ms ease, top 360ms ease;
  animation: map-pulse 1800ms ease-in-out infinite;
}

.map-pin {
  width: 24px;
  height: 24px;
  border: 4px solid var(--paper);
  border-radius: 50% 50% 50% 0;
  background: var(--maroon);
  box-shadow: 0 8px 18px rgba(88, 12, 16, 0.24);
  transform: translate(-50%, -100%) rotate(-45deg);
  transition: left 360ms ease, top 360ms ease;
}

.map-stage.is-near-top .map-tooltip {
  transform: translate(calc(-50% + 24px), 24px);
}

.map-pin::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--paper);
}

.map-tooltip {
  min-width: 134px;
  padding: 11px 14px 10px;
  border: 1px solid rgba(88, 12, 16, 0.12);
  background: rgba(247, 241, 236, 0.94);
  box-shadow: 0 12px 26px rgba(88, 12, 16, 0.12);
  color: var(--maroon);
  text-align: right;
  transform: translate(calc(-50% + 24px), calc(-100% - 48px));
  transition: left 360ms ease, top 360ms ease;
}

.map-tooltip strong,
.map-tooltip span {
  display: block;
  white-space: nowrap;
}

.map-tooltip strong {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 800;
}

.map-tooltip span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

@keyframes map-pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.province-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 5px;
  direction: rtl;
}

.province-list-right {
  gap: 11px;
  padding-top: 0;
}
.province-list-left {
  gap: 11px;
  padding-top: 0;
}
.province-item {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 15px;
  border: 0;
  background: transparent;
  text-align: inherit;
  color: var(--maroon);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.province-item:hover,
.province-item:focus-visible {
  color: var(--maroon-deep);
  transform: translateY(-2px);
}

.province-item:focus-visible {
  outline: 3px solid rgba(88, 12, 16, 0.28);
  outline-offset: 4px;
}

.province-list-left .province-item {
  justify-content: flex-start;
}
.float-left{
  float: left;
}
.float-right{
  float: right;
}
.margin-15{
      margin-left: 15px;
}
.province-list-right .province-item {
  width: 360px;
  min-height: 68px;
 padding: 10px 15px;
  direction: ltr;
}

.province-list-right .province-item .province-copy {
  direction: ltr;
  text-align: right;
}

.province-item.is-active {
  min-height: 80px;
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(88, 12, 16, 0.08);
  transform: none;
}

.province-item img {
   
  flex: 0 0 auto;
  object-fit: cover;
}

.province-copy {
  min-width: 112px;
  text-align: right;
}

.province-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;
  color: #00008A;
  text-align: left;

}

.province-copy span {
  display: block;
  color: #FE643C;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.province-list-left .province-item .province-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;
  color: #00008A;
  text-align: right;


}

.province-list-left .province-item .province-copy span {
  display: block;
  color: #FE643C;
  font-size: 12px;
  font-weight: 700;
   text-align: right;
}

.artisans-section {
  background: #fff;
  padding: 88px 0 72px;
  text-align: center;
}

.ornament-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 24;
  font-weight: bold;
}

.ornament-title::before,
.ornament-title::after {
  width: 73px;
  height: 27px;
  content: "";
  background: url(/assets/crafts/svg/title-pattern.svg);
 
  background-repeat: repeat-x;
}

.artisans-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 236px));
  justify-content: space-between;
  align-items: start;
  gap: 36px;
  margin-top: 48px;
  direction: rtl;
}

.artisan-card {
  min-width: 0;
  color: var(--maroon);
  direction: rtl;
}

.artisan-profile {
  display: block;
  color: var(--maroon);
}

.artisan-profile:focus-visible {
  outline: 3px solid rgba(88, 12, 16, 0.28);
  outline-offset: 10px;
}

.artisan-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
   background: url('/assets/crafts/svg/11.svg') no-repeat 100% 100% ;

  
}

.artisan-photo::before {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 100%;
  content: "";
   /* background: url('/assets/crafts/svg/11.svg') no-repeat center; */
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
    
}

.artisan-profile img {
  position: relative;
  display: block;
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 0 rgba(88, 12, 16, 0));
  transform: translateY(0) scale(1);
  transform-origin: center bottom;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.artisan-card h3 {
  position: relative;
  min-height: 50px;
  margin: 23px 0 8px;
  color: #00008A;
  font-size: 14px;
  font-weight: 800;
  line-height: 25px;
  text-align: right;;
  transition:
    color 180ms ease,
    transform 180ms ease;
    overflow: hidden;
}

/* .artisan-card h3::after {
  position: absolute;
  right: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  content: "";
  background: #FE643C;
  transform: translateX(50%);
  transition: width 180ms ease;
} */

.artisan-profile:hover .artisan-photo::before,
.artisan-profile:focus-visible .artisan-photo::before {
  opacity: 1;
  transform: translateY(0);
}

.artisan-profile:hover img,
.artisan-profile:focus-visible img {
  filter: drop-shadow(0 18px 18px rgba(88, 12, 16, 0.18));
  transform: translateY(-10px) scale(1.045);
}

.artisan-profile:hover h3,
.artisan-profile:focus-visible h3 {
  color: #FE643C;
  transform: translateY(-3px);
}

.artisan-profile:hover h3::after,
.artisan-profile:focus-visible h3::after {
  width: 58px;
}

.artisan-card p {
  display: flex;
  align-items: right;
  justify-content: right;
  gap: 7px;
  margin: 0 0 8px;
  color: #FE643C;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.tag-icon,
.pin-icon {

  display: inline-block;
  width: 16px;
  height: 16px;
  color: #FE643C;
  
}

.tag-icon {
  border-radius: 2px;
 background: url(/assets/crafts/svg/tag-icon.svg);
}
.pin-icon{
  background: url(/assets/crafts/svg/location.svg);
  
}
.tag-icon::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  
}

.pin-icon::before {
  position: absolute;
  inset: 1px 3px 4px;
  content: "";
  border-radius: 50% 50% 50% 0;
 
  transform: rotate(-45deg);
}

.pin-icon::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--cream);
}

.more-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 114px;
  height: 48px;
  margin-top: 48px;
  padding: 0 28px;
  background: #FE643C;
  color: #fff;
  font-size: 14px;
  border: none;
}

.more-button::before,
.more-button::after {
  position: absolute;
  top: 13px;
  width: 28px;
  height: 20px;
  content: "";
  background:url(/assets/crafts/svg/moreicon.svg);
 
}

.more-button::before {
  right: -22px;
   transform: rotate(90deg);
}

.more-button::after {
  left: -22px;
   transform: rotate(-90deg);
}
.more-button:hover{
  background: #FE643C;
}
.site-footer {
  min-height: 98px;
  background: #00008A;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 98px;
  direction: ltr;
  font-size: 12;
  font-family: "Helvetica Neue LT Arabic bold", "HelveticaNeueW23", "Helvetica Neue", Arial, sans-serif;
}

.footer-inner p {
  justify-self: end;
  margin: 0;
  font-size: 12px;
   
  direction: rtl;
}

.footer-center {
  display: block;
  
  height: 48px;
  object-fit: contain;
}

.footer-center::before, .footer-center::after{
  content: "";
    width: 51px;
    height: 32px;
    background: url(/assets/crafts/svg/footer-icon-0.svg);
     display: inline-block;
  
}

.social-links {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}
.instagram{
   background:url(/assets/crafts/svg/instagram.svg);
}
.tiktok{
   background:url(/assets/crafts/svg/tiktok.svg);
}
.whatsapp{
   background:url(/assets/crafts/svg/whatsapp.svg);
}
@media (max-width: 1280px) {
  .categories-grid {
    grid-template-columns: repeat(4, 148px);
    row-gap: 42px;
  }

  .province-layout {
    grid-template-columns: 280px 430px 320px;
    gap: 30px;
  }

  .map-stage {
    width: 430px;
  }

  .province-list-right .province-item {
    width: 320px;
  }

  .artisans-grid {
    grid-template-columns: repeat(3, minmax(190px, 236px));
    justify-content: center;
    gap: 46px 64px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 36px, 720px);
  }

  .hero {
    min-height: 720px;
  }

  .topbar {
    position: relative;
    grid-template-columns: minmax(76px, 1fr) auto minmax(76px, 1fr);
    align-items: center;
    min-height: 96px;
    padding-top: 18px;
  }

  .menu-toggle {
    grid-row: 1;
    grid-column: 1 / -1;
    position: absolute;
    top: 36px;
    right: auto;
    left: calc(100vw - 78px);
    display: inline-flex;
    z-index: 3;
  }

  .site-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: stretch;
    display: grid;
    gap: 8px;
    max-height: 0;
    padding-top: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    font-size: 14px;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      padding-top 180ms ease,
      visibility 0ms linear 220ms;
  }

  .topbar.is-menu-open .site-nav {
    max-height: 140px;
    padding-top: 14px;
    visibility: visible;
    opacity: 1;
    transition-delay: 0ms;
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(246, 233, 223, 0.2);
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .brand-lockup {
    width: 164px;
    height: 78px;
  }

  .language-link {
    align-self: center;
    padding-top: 0;
    font-size: 13px;
  }

  .hero-copy {
    margin-top: 42px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .search-band {
    grid-template-columns: 88px 1fr;
    margin-top: 54px;
  }

  .popular-searches {
    flex-wrap: wrap;
    font-size: 14px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 148px);
    gap: 38px 42px;
  }

  .province-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .province-list,
  .province-list-left .province-item {
    width: min(100%, 360px);
  }

  .province-list-left .province-item {
    justify-content: flex-start;
    direction: ltr;
  }

  .province-list-left .province-item .province-copy {
    direction: rtl;
  }

  .province-layout .map-stage {
    order: -1;
    width: min(100%, 493px);
  }

  .artisans-grid {
    grid-template-columns: repeat(2, minmax(170px, 236px));
    gap: 42px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
    text-align: center;
  }

  .social-links,
  .footer-inner p {
    justify-self: center;
  }

  .footer-center {
    order: -1;
    width: min(100%, 360px);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
  }

  .topbar {
    grid-template-columns: minmax(68px, 1fr) auto minmax(68px, 1fr);
    gap: 0 8px;
    justify-items: initial;
  }

  .menu-toggle {
    grid-row: 1;
    grid-column: 1 / -1;
    top: 30px;
    right: auto;
    left: calc(100vw - 78px);
  }

  .site-nav {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .brand-lockup {
    grid-row: 1;
    grid-column: 2;
    justify-self: center;
    width: 138px;
    height: 66px;
  }

  .language-link {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
    align-self: center;
    padding-top: 0;
    font-size: 12px;
  }

  .hero-copy {
    margin-top: 58px;
  }

  .search-band {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .search-band input {
    order: -1;
    height: 38px;
    font-size: 14px;
  }

  .search-band button {
    width: 100%;
  }

  .categories-grid,
  .artisans-grid {
    grid-template-columns: 1fr;
  }

  .category-card span {
    width: min(100%, 240px);
  }

  .province-list-right .province-item {
    width: 100%;
  }

  .ornament-title {
    gap: 12px;
  }

  .ornament-title::before,
  .ornament-title::after {
    width: 46px;
  }
}
.oman-pattern {
    width: 100%;
    height: 66px;
    background-color: #12008b;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;

    position: relative;
    overflow: hidden;
}

.pattern-shape {
    width: 58px;
    height: auto;
    display: block;
}

.oman-logo-box {
    width: 66px;
    height: 66px;

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

.oman-logo-box img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

/* Start New Updates */
.pin-icon:before, .pin-icon:after{
	display:none !important; 
}
.mobile-show, .show-mob{
	display:none;
}
.artisan-profile:hover img, .artisan-profile:focus-visible img {
    transform: none;
}
.map-stage img.float-left, .map-stage img.float-right {
    display: none;
}
.mobile-scroll-wrap{
	display:none;
}
.profile-info {
    padding-right: 40px;
}
.profile-visual {
    background: url(/assets/crafts/svg/craft-man-bg-.svg) no-repeat left bottom !important;
}
.profile-heading h1 {
    margin-bottom: 20px;
}
.craft-card {
    background: none !important;
	box-shadow: none !important;
}
.craft-photo {
    background-size: 100% auto !important;
    background-position: bottom !important;
}
.craft-body {
    background: none !important;
}
.crafts-grid {
    direction: rtl !important;
    row-gap: 24px !important;
}
.craft-card:hover img, .craft-card:focus-within img {
    transform: none !important;
	filter: none !important;
}
.craft-card:hover, .craft-card:focus-within {
    transform: none !important;
}
.craft-card:hover h2, .craft-card:focus-within h2 {
    color: #FE643C !important;
    transform: none !important;
}
@media (max-width: 991px) {
	.profile-info {
		padding-right: 12px;
	}
	.profile-visual {
		background: url(/assets/crafts/svg/craft-man-bg-.svg) no-repeat center bottom !important;
	}
	.profile-portrait {
		left: 0 !important;
		max-height: 600px !important;
		object-position: center bottom !important;
	}
	.craftsman-page .mob-site-link {
		color: #00008A;
	}
	.profile-description {
        text-align: center !important;
    }
}
@media (max-width: 900px) {
	.province-list{
		display:none;
	}
	.province-layout {
        display: block;
    }
	.province-copy strong {
		text-align: right;
	}
	.province-copy {
		min-width: 112px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: right;
	}
	.province-item {
		background: rgba(255, 255, 255, 0.5);
	}
	.province-item.is-active {
		box-shadow: initial !important;
	}
	.mobile-scroll-wrap {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        direction: rtl;
        margin-bottom: 14px;
		gap: 12px;
		padding-bottom:14px;
    }
	img.oman-map {
		max-width: 100%;
	}
	.topbar .menu-toggle , .topbar .site-nav{
        display: none !important;
	}
	.topbar {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }
	.brand-lockup {
        margin-right: 0;
        margin-left: auto;
    }
	.mobile-show{
		display:inline-flex;
		margin-left:14px;
	}
	.hero , .category-hero{
		background: radial-gradient(50% 40% at 100% 0%, #FE643C 0%, #00008A 100%) !important;
	}
	.search-band , .popular-searches{
        width: calc(100% - 48px);
    }
	.categories-grid {
        gap: 24px;
        display: flex;
        flex-wrap: wrap;
    }
	.category-card {
		flex: 0 0 calc(30% - 12px);
	}
	.category-card img {
		width: 100%;
	}
	.category-card span {
		width: 100%;
		min-height: initial;
	}
	.artisans-grid {
        gap: 24px;
        display: flex;
        flex-wrap: wrap;
    }
	.artisan-card {
		flex: 0 0 calc(30% - 12px);
	}
	
}
@media (max-width: 768px) {
	.category-card {
		flex: 0 0 calc(50% - 12px);
	}
	.artisan-card {
		flex: 0 0 calc(50% - 12px);
	}
	.artisan-photo , .artisan-profile img{
		height: auto;
	}
	.artisan-photo {
		background: url(/assets/crafts/svg/11.svg) no-repeat;
		background-size: 100% auto;
		background-position: bottom;
	}
	.crafts-listing {
        padding-top: 80px !important;
    }
	.category-hero {
        min-height: 320px !important;
    }
	.category-section {
		padding: 60px 0 !important;
	}
}

@media (max-width: 575px) {
    .brand-lockup {
        width: 110px;
        height: auto;
    }
	.language-link .show-desktop{
		display:none !important; 
	}
	.language-link .show-mob{
		display:inline-flex !important; 
	}
	.profile-meta {
        justify-content: center !important;
    }

}
@media (max-width: 520px) {
    .owner-strip {
        flex-direction: row !important;
        padding-block: 0 !important;
    }
	.social-links {
		gap: 14px !important;
	}
	.owner-strip {
        padding: 0 14px !important;
    }
	.oman-pattern {
		gap: 14px !important;
	}
}

/* End New Updates */