/* =========================================================
KURD WORLD SHOP
GLOBAL THEME VARIABLES
========================================================= */

:root {
  --bg: #0f0f0d;
  --surface: #171714;
  --surface-soft: #1e1e1a;

  --text: #f7f5ed;
  --muted: #aaa89f;

  --line: rgba(255,255,255,.10);

  --accent: #e6c65c;
  --accent-soft: rgba(230,198,92,.12);

  --shadow:
    0 15px 45px rgba(0,0,0,.18);
}


/* =========================================================
LIGHT THEME
========================================================= */

:root[data-theme="light"] {
  --bg: #f5f3ed;
  --surface: #ffffff;
  --surface-soft: #efede6;

  --text: #171612;
  --muted: #77746b;

  --line: rgba(23,22,18,.10);

  --accent: #a47d16;
  --accent-soft: rgba(164,125,22,.10);

  --shadow:
    0 15px 45px rgba(30,25,15,.08);
}


/* =========================================================
BODY
========================================================= */

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
}




/* =========================================================
KURD WORLD SHOP
HOME PAGE — FULL IMAGE BACKGROUND
========================================================= */


/* =========================================================
HOME BACKGROUND
========================================================= */

.home-page{

  position:relative;

  min-height:100vh;

  background:#11100e;

  color:#fff;

  overflow-x:hidden;
}


/* الصورة الرئيسية */

.home-background{

  position:fixed;

  inset:0;

  z-index:-3;

  background-image:
    url("/static/home-bg.jpg");

  background-size:cover;

  background-position:center center;

  background-repeat:no-repeat;

  transform:scale(1.02);
}


/* طبقة التعتيم فوق الصورة */

.home-overlay{

  position:fixed;

  inset:0;

  z-index:-2;

  pointer-events:none;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.52) 0%,
      rgba(0,0,0,.25) 35%,
      rgba(0,0,0,.40) 70%,
      rgba(0,0,0,.72) 100%
    );
}


/* إزالة الـ glow القديم من body على الـHome */

.home-page:before{

  display:none;
}


/* =========================================================
HOME HEADER
========================================================= */

.home-topbar{

  width:min(1180px,calc(100% - 36px));

  margin:20px auto 0;

  padding:10px 12px 10px 14px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  position:relative;

  z-index:10;

  border:1px solid rgba(255,255,255,.16);

  border-radius:18px;

  background:rgba(15,15,13,.28);

  backdrop-filter:blur(16px);

  -webkit-backdrop-filter:blur(16px);

  box-shadow:
    0 15px 50px rgba(0,0,0,.18);
}


/* =========================================================
HOME BRAND
========================================================= */

.home-topbar .brand{

  display:flex;

  align-items:center;

  gap:10px;

  color:#fff;

  text-decoration:none;
}


.home-topbar .brand-mark{

  width:42px;
  height:42px;

  display:grid;

  place-items:center;

  border-radius:13px;

  background:rgba(255,255,255,.92);

  color:#171612;

  font-size:13px;

  font-weight:950;

  letter-spacing:-1px;

  box-shadow:
    0 8px 25px rgba(0,0,0,.15);
}


.home-topbar .brand-text strong{

  display:block;

  font-size:14px;

  letter-spacing:-.3px;
}


.home-topbar .brand-text small{

  display:block;

  margin-top:2px;

  color:#e8c75b;

  font-size:8px;

  font-weight:900;

  letter-spacing:3px;
}


/* =========================================================
THEME BUTTON
========================================================= */

.home-topbar .theme-toggle{

  width:40px;
  height:40px;

  display:grid;

  place-items:center;

  border:1px solid rgba(255,255,255,.16);

  border-radius:12px;

  background:rgba(255,255,255,.10);

  color:#fff;

  cursor:pointer;

  font-size:16px;

  backdrop-filter:blur(10px);

  -webkit-backdrop-filter:blur(10px);

  transition:
    transform .2s ease,
    background .2s ease;
}


.home-topbar .theme-toggle:hover{

  transform:translateY(-2px);

  background:rgba(255,255,255,.18);
}


/* =========================================================
HOME HERO
========================================================= */

.home-main{

  position:relative;

  z-index:1;
}


.home-hero{

  min-height:calc(100vh - 85px);

  display:flex;

  align-items:center;

  justify-content:center;

  padding:
    90px 20px
    70px;

  text-align:center;
}


.home-content{

  width:min(780px,100%);

  display:flex;

  flex-direction:column;

  align-items:center;

  margin-top:-20px;
}


/* =========================================================
EYEBROW
========================================================= */

.home-content .eyebrow{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:8px 13px;

  margin-bottom:20px;

  border:1px solid rgba(255,255,255,.18);

  border-radius:999px;

  background:rgba(0,0,0,.20);

  color:rgba(255,255,255,.82);

  font-size:9px;

  font-weight:850;

  letter-spacing:3px;

  backdrop-filter:blur(10px);

  -webkit-backdrop-filter:blur(10px);
}


/* =========================================================
HOME TITLE
========================================================= */

.home-content h1{

  margin:0;

  max-width:850px;

  color:#fff;

  font-size:
    clamp(48px,8vw,82px);

  line-height:.98;

  letter-spacing:-4px;

  font-weight:850;

  text-shadow:
    0 5px 30px rgba(0,0,0,.35);
}


.home-content h1 span{

  display:block;

  margin-top:7px;

  color:#f0d36c;
}


/* =========================================================
DESCRIPTION
========================================================= */

.home-content .hero-description{

  max-width:570px;

  margin:24px auto 0;

  color:rgba(255,255,255,.76);

  font-size:16px;

  line-height:1.75;

  text-shadow:
    0 2px 15px rgba(0,0,0,.4);
}


/* =========================================================
HOME ACTIONS
========================================================= */

.home-content .hero-actions{

  display:flex;

  align-items:center;

  justify-content:center;

  gap:16px;

  flex-wrap:wrap;

  margin-top:31px;
}


/* =========================================================
ENTER TO WORLD
========================================================= */

.home-content .primary-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:17px;

  min-width:205px;

  padding:15px 18px;

  border:1px solid rgba(255,255,255,.15);

  border-radius:14px;

  background:rgba(255,255,255,.94);

  color:#171612;

  text-decoration:none;

  font-size:12px;

  font-weight:900;

  box-shadow:
    0 14px 40px rgba(0,0,0,.25);

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease;
}


.home-content .primary-btn:hover{

  transform:translateY(-4px);

  background:#fff;

  box-shadow:
    0 20px 48px rgba(0,0,0,.32);
}


.home-content .btn-arrow{

  font-size:18px;

  line-height:1;

  transition:
    transform .22s ease;
}


.home-content .primary-btn:hover .btn-arrow{

  transform:translateX(5px);
}


/* =========================================================
ONLINE STATUS
========================================================= */

.home-content .system-status{

  display:flex;

  align-items:center;

  gap:8px;

  color:rgba(255,255,255,.72);

  font-size:9px;

  font-weight:800;

  letter-spacing:1.5px;
}


.home-content .status-dot{

  width:7px;
  height:7px;

  display:inline-block;

  border-radius:50%;

  background:#69d89b;

  box-shadow:
    0 0 0 4px rgba(105,216,155,.13),
    0 0 14px rgba(105,216,155,.45);
}


/* =========================================================
FEATURE CARDS
========================================================= */

.home-page .feature-grid{

  width:min(1050px,calc(100% - 36px));

  margin:0 auto;

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:12px;

  padding:
    0 0 70px;
}


.home-page .feature-card{

  position:relative;

  min-height:175px;

  padding:22px;

  border:1px solid rgba(255,255,255,.14);

  border-radius:18px;

  background:rgba(10,10,9,.30);

  color:#fff;

  backdrop-filter:blur(14px);

  -webkit-backdrop-filter:blur(14px);

  box-shadow:
    0 15px 45px rgba(0,0,0,.16);

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}


.home-page .feature-card:hover{

  transform:translateY(-5px);

  background:rgba(10,10,9,.40);

  border-color:rgba(255,255,255,.23);
}


.home-page .feature-number{

  color:rgba(255,255,255,.45);

  font-size:9px;

  font-weight:800;

  letter-spacing:2px;
}


.home-page .feature-icon{

  margin:23px 0 15px;

  color:#f0d36c;

  font-size:20px;
}


.home-page .feature-card h3{

  margin:0 0 7px;

  color:#fff;

  font-size:17px;
}


.home-page .feature-card p{

  max-width:270px;

  margin:0;

  color:rgba(255,255,255,.63);

  font-size:11px;

  line-height:1.65;
}


/* =========================================================
HOME FOOTER
========================================================= */

.home-page .site-footer{

  width:min(1050px,calc(100% - 36px));

  margin:0 auto;

  padding:
    25px 0 32px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  border-top:1px solid rgba(255,255,255,.14);

  color:rgba(255,255,255,.65);

  position:relative;

  z-index:2;
}


.home-page .footer-brand{

  color:#fff;

  font-size:11px;

  font-weight:800;
}


.home-page .footer-status{

  display:flex;

  align-items:center;

  gap:8px;

  font-size:8px;

  font-weight:800;

  letter-spacing:2px;
}


.home-page .footer-copy{

  font-size:9px;

  color:rgba(255,255,255,.45);
}


/* =========================================================
HOME MOBILE
========================================================= */

@media(max-width:700px){

  .home-topbar{

    width:calc(100% - 24px);

    margin-top:12px;

    border-radius:15px;
  }


  .home-topbar .brand-mark{

    width:38px;
    height:38px;
  }


  .home-topbar .brand-text strong{

    font-size:13px;
  }


  .home-hero{

    min-height:calc(100vh - 70px);

    padding:
      65px 18px
      60px;
  }


  .home-content{

    margin-top:-10px;
  }


  .home-content .eyebrow{

    font-size:8px;

    letter-spacing:2.5px;

    padding:7px 10px;

    margin-bottom:17px;
  }


  .home-content h1{

    font-size:
      clamp(43px,12vw,62px);

    letter-spacing:-3px;
  }


  .home-content .hero-description{

    margin-top:19px;

    font-size:14px;

    line-height:1.7;
  }


  .home-content .hero-actions{

    margin-top:26px;

    flex-direction:column;

    width:100%;
  }


  .home-content .primary-btn{

    width:100%;

    max-width:260px;
  }


  .home-page .feature-grid{

    width:calc(100% - 28px);

    grid-template-columns:1fr;

    padding-bottom:55px;
  }


  .home-page .feature-card{

    min-height:145px;
  }


  .home-page .site-footer{

    width:calc(100% - 28px);

    flex-direction:column;

    align-items:flex-start;

    padding-bottom:28px;
  }

}


@media(max-width:430px){

  .home-content h1{

    font-size:43px;

    letter-spacing:-2.5px;
  }


  .home-content .hero-description{

    font-size:13px;
  }


  .home-background{

    background-position:
      62% center;
  }

}


/* =========================================================
HOME — LIGHT THEME
========================================================= */

:root[data-theme="light"] .home-overlay{

  background:
    linear-gradient(
      180deg,
      rgba(35,30,24,.38) 0%,
      rgba(35,30,24,.16) 38%,
      rgba(35,30,24,.32) 70%,
      rgba(20,18,15,.62) 100%
    );
}


:root[data-theme="light"] .home-topbar{

  background:rgba(255,255,255,.16);

  border-color:rgba(255,255,255,.28);
}


/* =========================================================
REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  .home-background{

    transform:none;
  }

}

/* =========================================================
KURD WORLD SHOP
EXPLORE SHOP — PREMIUM STORE
========================================================= */


/* =========================================================
SHOP BASE
========================================================= */

.shop-page{

  min-height:100vh;

  background:var(--bg);

  color:var(--text);

  overflow-x:hidden;
}


.shop-page:before{

  display:none;
}


/* =========================================================
SHOP HEADER
========================================================= */

.shop-header{

  width:min(1180px,calc(100% - 36px));

  margin:20px auto 0;

  padding:10px 12px 10px 14px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:20px;

  position:relative;

  z-index:20;

  background:var(--surface);

  border:1px solid var(--line);

  border-radius:18px;

  box-shadow:var(--shadow);
}


.shop-brand{

  display:flex;

  align-items:center;

  gap:10px;

  color:var(--text);

  text-decoration:none;
}


.shop-brand-mark{

  width:42px;
  height:42px;

  display:grid;

  place-items:center;

  flex:0 0 42px;

  border-radius:13px;

  background:var(--text);

  color:var(--bg);

  font-size:13px;

  font-weight:950;

  letter-spacing:-1px;
}


.shop-brand-text strong{

  display:block;

  font-size:14px;

  letter-spacing:-.3px;
}


.shop-brand-text small{

  display:block;

  margin-top:2px;

  color:var(--accent);

  font-size:8px;

  font-weight:900;

  letter-spacing:3px;
}


.shop-header-actions{

  display:flex;

  align-items:center;

  gap:8px;
}


.shop-visitors{

  display:flex;

  align-items:center;

  gap:8px;

  padding:9px 11px;

  border:1px solid var(--line);

  border-radius:11px;

  background:var(--surface-soft);

  color:var(--muted);

  font-size:9px;

  font-weight:800;

  letter-spacing:.5px;
}


.shop-online-dot{

  width:7px;
  height:7px;

  display:inline-block;

  flex:0 0 7px;

  border-radius:50%;

  background:var(--accent);

  box-shadow:
    0 0 0 4px var(--accent-soft);
}


.shop-theme-button{

  width:40px;
  height:40px;

  display:grid;

  place-items:center;

  border:1px solid var(--line);

  border-radius:12px;

  background:var(--surface-soft);

  color:var(--text);

  cursor:pointer;

  font-size:16px;

  transition:
    transform .2s ease,
    background .2s ease;
}


.shop-theme-button:hover{

  transform:translateY(-2px);

  background:var(--accent-soft);
}


/* =========================================================
SHOP MAIN
========================================================= */

.shop-main{

  width:min(1180px,calc(100% - 36px));

  margin:0 auto;
}


/* =========================================================
SHOP HERO
========================================================= */

.shop-hero-new{

  min-height:400px;

  display:flex;

  align-items:center;

  justify-content:center;

  text-align:center;

  padding:
    70px 20px
    55px;
}


.shop-hero-content{

  width:min(760px,100%);

  display:flex;

  flex-direction:column;

  align-items:center;
}


.shop-hero-kicker{

  margin-bottom:17px;

  color:var(--accent);

  font-size:9px;

  font-weight:900;

  letter-spacing:4px;
}


.shop-hero-new h1{

  margin:0;

  color:var(--text);

  font-size:
    clamp(48px,7vw,76px);

  line-height:.98;

  letter-spacing:-4px;

  font-weight:850;
}


.shop-hero-new h1 span{

  display:block;

  color:var(--accent);
}


.shop-hero-new p{

  max-width:580px;

  margin:22px auto 0;

  color:var(--muted);

  font-size:15px;

  line-height:1.75;
}


/* =========================================================
CATEGORY BAR
========================================================= */

.shop-category-bar{

  position:sticky;

  top:10px;

  z-index:15;

  width:100%;

  margin-bottom:42px;

  padding:8px;

  border:1px solid var(--line);

  border-radius:16px;

  background:color-mix(
    in srgb,
    var(--surface) 88%,
    transparent
  );

  box-shadow:
    0 10px 35px rgba(0,0,0,.05);

  backdrop-filter:blur(16px);

  -webkit-backdrop-filter:blur(16px);
}


.shop-category-scroll{

  display:flex;

  align-items:center;

  gap:7px;

  overflow-x:auto;

  scrollbar-width:none;

  padding:1px;
}


.shop-category-scroll::-webkit-scrollbar{

  display:none;
}


.shop-category-pill{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  flex:0 0 auto;

  min-height:38px;

  padding:9px 15px;

  border:1px solid transparent;

  border-radius:11px;

  background:transparent;

  color:var(--muted);

  text-decoration:none;

  font-size:10px;

  font-weight:800;

  white-space:nowrap;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}


.shop-category-pill:hover{

  color:var(--text);

  background:var(--surface-soft);
}


.shop-category-pill.active{

  background:var(--text);

  color:var(--bg);
}


/* =========================================================
SECTION TITLES
========================================================= */

.shop-products-section,
.shop-category-section-new{

  margin-bottom:75px;
}


.shop-section-title{

  display:flex;

  align-items:flex-end;

  justify-content:space-between;

  gap:20px;

  margin-bottom:18px;
}


.shop-section-title > div:first-child > span{

  display:block;

  margin-bottom:7px;

  color:var(--accent);

  font-size:8px;

  font-weight:900;

  letter-spacing:3px;
}


.shop-section-title h2{

  margin:0;

  color:var(--text);

  font-size:27px;

  letter-spacing:-1.3px;
}


.shop-item-count{

  display:flex;

  align-items:baseline;

  gap:5px;

  color:var(--text);

  font-size:15px;

  font-weight:900;
}


.shop-item-count small{

  color:var(--muted);

  font-size:9px;

  font-weight:700;
}


/* =========================================================
PRODUCT GRID
========================================================= */

.shop-products-grid{

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:14px;
}


/* =========================================================
PRODUCT CARD
========================================================= */

.shop-card{

  overflow:hidden;

  display:flex;

  flex-direction:column;

  background:var(--surface);

  border:1px solid var(--line);

  border-radius:20px;

  box-shadow:
    0 10px 35px rgba(0,0,0,.035);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}


.shop-card:hover{

  transform:translateY(-5px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.09);

  border-color:
    rgba(22,131,77,.22);
}


/* =========================================================
PRODUCT IMAGE
========================================================= */

.shop-card-image{

  width:100%;

  height:220px;

  overflow:hidden;

  display:grid;

  place-items:center;

  background:var(--surface-soft);
}


.shop-card-image img{

  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:
    transform .45s ease;
}


.shop-card:hover .shop-card-image img{

  transform:scale(1.035);
}


/* =========================================================
NO IMAGE
========================================================= */

.shop-card-no-image{

  position:relative;

  flex-direction:column;

  gap:9px;

  background:
    linear-gradient(
      135deg,
      var(--surface-soft),
      var(--accent-soft)
    );
}


.shop-card-placeholder{

  width:58px;
  height:58px;

  display:grid;

  place-items:center;

  border-radius:17px;

  background:var(--text);

  color:var(--bg);

  font-size:14px;

  font-weight:950;
}


.shop-card-no-image > span{

  color:var(--muted);

  font-size:9px;

  font-weight:800;

  letter-spacing:1px;
}


/* =========================================================
PRODUCT CONTENT
========================================================= */

.shop-card-content{

  display:flex;

  flex-direction:column;

  flex:1;

  padding:17px;
}


.shop-card-meta{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:10px;

  margin-bottom:9px;
}


.shop-card-category{

  max-width:75%;

  overflow:hidden;

  text-overflow:ellipsis;

  white-space:nowrap;

  color:var(--accent);

  font-size:8px;

  font-weight:900;

  letter-spacing:1.5px;

  text-transform:uppercase;
}


.shop-card-id{

  color:var(--muted);

  font-size:8px;

  font-weight:700;
}


.shop-card h3{

  margin:0;

  color:var(--text);

  font-size:18px;

  line-height:1.2;

  letter-spacing:-.5px;
}


.shop-card-description{

  margin:9px 0 0;

  min-height:38px;

  color:var(--muted);

  font-size:11px;

  line-height:1.65;

  display:-webkit-box;

  -webkit-line-clamp:2;

  -webkit-box-orient:vertical;

  overflow:hidden;
}


.shop-card-description.muted{

  opacity:.7;
}


/* =========================================================
PRICE
========================================================= */

.shop-card-price-row{

  display:flex;

  align-items:center;

  justify-content:space-between;

  margin-top:auto;

  padding-top:17px;

  margin-bottom:13px;
}


.shop-card-price{

  color:var(--accent);

  font-size:19px;

  font-weight:950;

  letter-spacing:-.4px;
}


/* =========================================================
CONTACT BUTTONS
========================================================= */

.shop-card-contact{

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:7px;
}


.shop-contact{

  min-height:37px;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:6px;

  padding:8px 9px;

  border:1px solid var(--line);

  border-radius:10px;

  color:var(--text);

  background:var(--surface-soft);

  text-decoration:none;

  font-size:9px;

  font-weight:850;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}


.shop-contact:hover{

  transform:translateY(-2px);
}


.shop-contact.telegram:hover{

  background:#e9f3fa;

  border-color:#b8d9ed;
}


.shop-contact.whatsapp:hover{

  background:#e9f5ed;

  border-color:#b9dfc7;
}


.shop-contact-symbol{

  font-size:12px;
}


/* =========================================================
CATEGORY SECTIONS
========================================================= */

.shop-category-section-new{

  padding-top:15px;
}


.shop-category-section-new
.shop-section-title{

  padding-top:10px;

  border-top:1px solid var(--line);
}


/* =========================================================
EMPTY SHOP
========================================================= */

.shop-empty-new{

  min-height:360px;

  display:flex;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  text-align:center;

  padding:50px 25px;

  border:1px dashed var(--line);

  border-radius:20px;

  background:var(--surface-soft);

  margin-bottom:70px;
}


.shop-empty-logo{

  width:58px;
  height:58px;

  display:grid;

  place-items:center;

  margin-bottom:17px;

  border-radius:17px;

  background:var(--text);

  color:var(--bg);

  font-size:14px;

  font-weight:950;
}


.shop-empty-new > span{

  margin-bottom:7px;

  color:var(--accent);

  font-size:8px;

  font-weight:900;

  letter-spacing:3px;
}


.shop-empty-new h2{

  margin:0 0 8px;

  font-size:25px;

  letter-spacing:-1px;
}


.shop-empty-new p{

  max-width:420px;

  margin:0;

  color:var(--muted);

  font-size:11px;

  line-height:1.7;
}


/* =========================================================
SHOP FOOTER
========================================================= */

.shop-footer-new{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:25px;

  padding:
    28px 0
    35px;

  border-top:1px solid var(--line);
}


.shop-footer-brand{

  display:flex;

  align-items:center;

  gap:10px;
}


.shop-footer-mark{

  width:37px;
  height:37px;

  display:grid;

  place-items:center;

  border-radius:11px;

  background:var(--text);

  color:var(--bg);

  font-size:10px;

  font-weight:950;
}


.shop-footer-brand strong{

  display:block;

  color:var(--text);

  font-size:11px;
}


.shop-footer-brand small{

  display:block;

  margin-top:3px;

  color:var(--muted);

  font-size:8px;
}


.shop-footer-right{

  display:flex;

  align-items:center;

  justify-content:flex-end;

  gap:17px;

  color:var(--muted);

  font-size:8px;
}


.shop-footer-online{

  display:flex;

  align-items:center;

  gap:7px;

  color:var(--accent);

  font-weight:900;

  letter-spacing:1.5px;
}


/* =========================================================
DARK MODE CONTACT HOVER
========================================================= */

:root[data-theme="dark"]
.shop-contact.telegram:hover{

  background:#182731;

  border-color:#29495a;
}


:root[data-theme="dark"]
.shop-contact.whatsapp:hover{

  background:#17291e;

  border-color:#294b34;
}


/* =========================================================
TABLET
========================================================= */

@media(max-width:900px){

  .shop-products-grid{

    grid-template-columns:
      repeat(2,1fr);
  }


  .shop-card-image{

    height:210px;
  }


  .shop-hero-new{

    min-height:350px;
  }

}


/* =========================================================
MOBILE
========================================================= */

@media(max-width:700px){

  .shop-header{

    width:calc(100% - 24px);

    margin-top:12px;

    border-radius:15px;
  }


  .shop-brand-mark{

    width:38px;
    height:38px;

    flex-basis:38px;
  }


  .shop-brand-text strong{

    font-size:13px;
  }


  .shop-visitors{

    padding:8px;

    font-size:8px;
  }


  .shop-theme-button{

    width:38px;
    height:38px;
  }


  .shop-main{

    width:calc(100% - 28px);
  }


  .shop-hero-new{

    min-height:330px;

    padding:
      55px 10px
      45px;
  }


  .shop-hero-kicker{

    font-size:8px;

    letter-spacing:3px;
  }


  .shop-hero-new h1{

    font-size:
      clamp(43px,12vw,61px);

    letter-spacing:-3px;
  }


  .shop-hero-new p{

    margin-top:18px;

    font-size:13px;

    line-height:1.7;
  }


  .shop-category-bar{

    top:7px;

    margin-bottom:32px;
  }


  .shop-category-pill{

    min-height:36px;

    padding:8px 13px;

    font-size:9px;
  }


  .shop-products-section,
  .shop-category-section-new{

    margin-bottom:58px;
  }


  .shop-section-title{

    align-items:flex-end;

    margin-bottom:14px;
  }


  .shop-section-title h2{

    font-size:22px;
  }


  .shop-item-count{

    font-size:13px;
  }


  .shop-products-grid{

    grid-template-columns:1fr;

    gap:11px;
  }


  .shop-card{

    border-radius:17px;
  }


  .shop-card-image{

    height:240px;
  }


  .shop-card-content{

    padding:15px;
  }


  .shop-card h3{

    font-size:17px;
  }


  .shop-card-description{

    font-size:10px;
  }


  .shop-card-price{

    font-size:18px;
  }


  .shop-footer-new{

    flex-direction:column;

    align-items:flex-start;

    padding-bottom:28px;
  }


  .shop-footer-right{

    width:100%;

    justify-content:flex-start;

    flex-wrap:wrap;

    gap:10px 15px;
  }

}


/* =========================================================
SMALL PHONES
========================================================= */

@media(max-width:430px){

  .shop-header{

    padding:
      8px 9px 8px 10px;
  }


  .shop-brand-mark{

    width:36px;
    height:36px;

    flex-basis:36px;
  }


  .shop-brand-text strong{

    font-size:12px;
  }


  .shop-brand-text small{

    font-size:7px;

    letter-spacing:2.5px;
  }


  .shop-visitors span:last-child{

    display:none;
  }


  .shop-visitors{

    width:32px;
    height:32px;

    justify-content:center;

    padding:0;
  }


  .shop-online-dot{

    width:6px;
    height:6px;
  }


  .shop-theme-button{

    width:34px;
    height:34px;
  }


  .shop-hero-new{

    padding-top:45px;
  }


  .shop-hero-new h1{

    font-size:42px;

    letter-spacing:-2.5px;
  }


  .shop-card-image{

    height:220px;
  }


  .shop-card-contact{

    grid-template-columns:1fr 1fr;
  }

}

/* =========================================================
EXPLORE SHOP — MOBILE POLISH
========================================================= */

@media (max-width:700px){

  /* تقليل مساحة الـ Hero */
  .shop-hero-new{
    min-height:260px;
    padding:35px 10px 30px;
  }

  .shop-hero-kicker{
    margin-bottom:14px;
  }

  .shop-hero-new h1{
    font-size:44px;
    line-height:.98;
  }

  .shop-hero-new p{
    max-width:340px;
    margin-top:16px;
    font-size:12px;
    line-height:1.65;
  }


  /* التصنيفات */
  .shop-category-bar{
    margin-bottom:38px;
    padding:6px;
    border-radius:15px;
  }

  .shop-category-scroll{
    gap:4px;
  }

  .shop-category-pill{
    min-height:38px;
    padding:8px 15px;
    border-radius:10px;
    font-size:9px;
  }

  /* لا نخلي All أكبر من الباقي */
  .shop-category-pill.active{
    min-width:auto;
  }


  /* عنوان المنتجات */
  .shop-section-title{
    margin-bottom:13px;
  }

  .shop-section-title h2{
    font-size:21px;
  }


  /* كرت المنتج */
  .shop-card{
    border-radius:16px;
  }

  .shop-card-image{
    height:200px;
  }

  .shop-card-content{
    padding:14px;
  }

  .shop-card h3{
    font-size:17px;
  }

  .shop-card-description{
    margin-top:7px;
    font-size:10px;
  }

  .shop-card-price-row{
    padding-top:14px;
    margin-bottom:11px;
  }

  .shop-card-price{
    font-size:17px;
  }

  .shop-contact{
    min-height:36px;
    font-size:9px;
  }

}


/* =========================================================
SMALL PHONES
========================================================= */

@media(max-width:430px){

  .shop-hero-new{
    min-height:245px;
    padding-top:30px;
    padding-bottom:25px;
  }

  .shop-hero-new h1{
    font-size:41px;
  }

  .shop-hero-new p{
    font-size:11px;
    max-width:320px;
  }

  .shop-category-bar{
    margin-bottom:34px;
  }

  .shop-card-image{
    height:190px;
  }

}

/* =========================================================
WORLD — MINIMAL INTRO
========================================================= */

.shop-hero-new{
  min-height:230px;
  padding:45px 20px 35px;
}

.shop-hero-content{
  width:100%;
}

.shop-hero-kicker{
  margin-bottom:12px;
  font-size:8px;
  letter-spacing:4px;
}

.shop-hero-new h1{
  font-size:clamp(34px,5vw,52px);
  line-height:1;
  letter-spacing:-2.5px;
}

.shop-hero-new h1 span{
  display:inline;
}


/* MOBILE */

@media(max-width:700px){

  .shop-hero-new{
    min-height:190px;
    padding:38px 15px 28px;
  }

  .shop-hero-kicker{
    margin-bottom:11px;
    font-size:7px;
    letter-spacing:3px;
  }

  .shop-hero-new h1{
    font-size:36px;
    letter-spacing:-2px;
  }

}


/* SMALL PHONES */

@media(max-width:430px){

  .shop-hero-new{
    min-height:175px;
    padding-top:32px;
  }

  .shop-hero-new h1{
    font-size:33px;
  }

}

/* =========================================================
   WORLD HERO BACKGROUND
========================================================= */

.shop-hero-new {
  position: relative;
  min-height: 230px;
  padding: 45px 20px 35px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(10, 11, 10, 0.82),
      rgba(10, 11, 10, 0.45),
      rgba(10, 11, 10, 0.72)
    ),
    url("/static/world-bg.jpg");

  background-size: cover;
  background-position: center;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.shop-hero-kicker {
  display: block;
  margin-bottom: 12px;
  font-size: 8px;
  letter-spacing: 4px;
}

.shop-hero-new h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -2.5px;
}

.shop-hero-new h1 span {
  display: inline;
}

@media (max-width: 700px) {

  .shop-hero-new {
    min-height: 190px;
    padding: 38px 15px 28px;

    background-position: center;
  }

  .shop-hero-kicker {
    margin-bottom: 11px;
    font-size: 7px;
    letter-spacing: 3px;
  }

  .shop-hero-new h1 {
    font-size: 36px;
    letter-spacing: -2px;
  }

}

@media (max-width: 430px) {

  .shop-hero-new {
    min-height: 175px;
    padding-top: 32px;
  }

  .shop-hero-new h1 {
    font-size: 33px;
  }

}

/* =========================================================
   KURD WORLD SHOP — PREMIUM PRODUCT CARDS
========================================================= */

.shop-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;

  box-shadow:
    0 8px 30px rgba(0,0,0,.06);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.shop-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.12);

  border-color:
    color-mix(
      in srgb,
      var(--accent) 35%,
      var(--line)
    );
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.shop-card-image {
  position: relative;
  height: 215px;
  background: var(--surface-soft);
  overflow: hidden;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition:
    transform .5s cubic-bezier(.2,.7,.2,1);
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.045);
}


/* صورة المنتج — تدرج خفيف من الأسفل */

.shop-card-image::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(0,0,0,.12)
    );
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.shop-card-content {
  padding: 16px;
}


/* التصنيف + ID */

.shop-card-meta {
  margin-bottom: 8px;
}

.shop-card-category {
  color: var(--accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.7px;
}

.shop-card-id {
  opacity: .65;
}


/* اسم المنتج */

.shop-card h3 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.6px;
}


/* الوصف */

.shop-card-description {
  margin-top: 8px;

  color: var(--muted);

  font-size: 10px;
  line-height: 1.6;
}


/* =========================================================
   PRICE
========================================================= */

.shop-card-price-row {
  margin-top: auto;
  padding-top: 16px;
  margin-bottom: 12px;
}

.shop-card-price {
  color: var(--accent);

  font-size: 20px;
  font-weight: 950;

  letter-spacing: -.5px;
}


/* =========================================================
   CONTACT BUTTONS
========================================================= */

.shop-card-contact {
  gap: 7px;
}

.shop-contact {
  min-height: 38px;

  border-radius: 10px;

  background: var(--surface-soft);

  font-size: 9px;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.shop-contact:hover {
  transform: translateY(-2px);
}


/* =========================================================
   MOBILE PRODUCT CARDS
========================================================= */

@media (max-width:700px) {

  .shop-card {
    border-radius: 16px;
  }

  .shop-card-image {
    height: 205px;
  }

  .shop-card-content {
    padding: 15px;
  }

  .shop-card h3 {
    font-size: 17px;
  }

  .shop-card-description {
    font-size: 10px;
  }

  .shop-card-price {
    font-size: 18px;
  }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width:430px) {

  .shop-card-image {
    height: 195px;
  }

  .shop-card-content {
    padding: 14px;
  }

}
/* =========================================================
   PRODUCT CARD — FINAL MOBILE LOOK
========================================================= */

@media (max-width:700px){

  .shop-card{
    border-radius:18px;
  }

  /* IMAGE */
  .shop-card-image{
    height:190px;
    background:#000;
  }

  .shop-card-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
  }

  /* CONTENT */
  .shop-card-content{
    padding:15px 16px 16px;
  }

  .shop-card-meta{
    margin-bottom:6px;
  }

  .shop-card h3{
    margin:0;
    font-size:19px;
  }

  .shop-card-description{
    margin-top:7px;
    font-size:10px;
    line-height:1.6;
  }

  /* PRICE */
  .shop-card-price-row{
    margin-top:16px;
    padding-top:0;
    margin-bottom:11px;
  }

  .shop-card-price{
    font-size:20px;
  }

  /* CONTACT */
  .shop-card-contact{
    gap:7px;
  }

  .shop-contact{
    min-height:40px;
    border-radius:11px;
    font-size:10px;
  }
}


/* SMALL PHONES */

@media (max-width:430px){

  .shop-card-image{
    height:180px;
  }

  .shop-card-content{
    padding:14px 15px 15px;
  }

  .shop-card h3{
    font-size:18px;
  }

  .shop-card-price{
    font-size:19px;
  }
}

/* =========================================================
   FINAL PRODUCT CARD SPACING FIX
========================================================= */

.shop-card{
  display:flex;
  flex-direction:column;
}

.shop-card-content{
  display:flex;
  flex-direction:column;
}

.shop-card-price-row{
  margin-top:16px !important;
  padding-top:0 !important;
  margin-bottom:11px !important;
}

.shop-card-contact{
  margin-top:0 !important;
}

@media (max-width:700px){

  .shop-card-content{
    padding:15px 16px 16px;
  }

  .shop-card-description{
    margin-bottom:0 !important;
  }

  .shop-card-price-row{
    margin-top:14px !important;
  }

  .shop-contact{
    width:auto;
  }
}
/* =========================================================
   PRODUCT CARD — TIGHT PREMIUM SPACING
========================================================= */

.shop-card-content{
  padding:14px 16px 15px !important;
}

.shop-card-description{
  margin-top:6px !important;
  margin-bottom:0 !important;
  line-height:1.5 !important;
}

.shop-card-price-row{
  margin-top:10px !important;
  padding-top:0 !important;
  margin-bottom:9px !important;
}

.shop-card-price{
  line-height:1 !important;
}

.shop-card-contact{
  margin-top:0 !important;
}

.shop-contact{
  min-height:38px !important;
}


/* MOBILE */

@media(max-width:700px){

  .shop-card-image{
    height:180px !important;
  }

  .shop-card-content{
    padding:14px 15px 15px !important;
  }

  .shop-card-price-row{
    margin-top:10px !important;
    margin-bottom:9px !important;
  }

}

.shop-card-description{
  font-size:12px !important;
  line-height:1.8 !important;
  margin-top:8px !important;
}
/* =========================================================
   KURD WORLD SHOP — PREMIUM CATEGORY BAR
========================================================= */

.shop-category-bar{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 15px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.shop-category-scroll{
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.shop-category-scroll::-webkit-scrollbar{
  display: none;
}

.shop-category-pill{
  position: relative;
  flex: 0 0 auto;
  min-width: 70px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .4px;
  white-space: nowrap;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .2s ease;
}

.shop-category-pill:hover{
  color: var(--text);
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.shop-category-pill.active{
  color: #111;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.12);
}

.shop-category-pill.active::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}

@media(max-width:700px){

  .shop-category-bar{
    padding: 8px 12px;
  }

  .shop-category-scroll{
    gap: 6px;
  }

  .shop-category-pill{
    min-width: 64px;
    padding: 8px 12px;
    font-size: 9px;
  }

}
/* =========================================================
   KURD WORLD SHOP — PREMIUM WORLD HEADER
========================================================= */

.shop-header{
  position: relative;
  z-index: 60;
  min-height: 62px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* BRAND */

.shop-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.shop-brand-mark{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--surface-soft);
  color: var(--accent);

  font-size: 10px;
  font-weight: 950;
  letter-spacing: .5px;
}

.shop-brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.shop-brand-text strong{
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.3px;
}

.shop-brand-text small{
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 2px;
}


/* RIGHT SIDE */

.shop-header-actions{
  display: flex;
  align-items: center;
  gap: 7px;
}


/* VISITORS */

.shop-visitors{
  min-height: 34px;
  padding: 0 11px;

  display: flex;
  align-items: center;
  gap: 6px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--surface-soft);
  color: var(--muted);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .5px;
}

.shop-online-dot{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #55c878;
  box-shadow: 0 0 8px rgba(85,200,120,.5);
}


/* THEME BUTTON */

.shop-theme-button{
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--surface-soft);
  color: var(--text);

  cursor: pointer;
  font-size: 13px;

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.shop-theme-button:hover{
  transform: translateY(-2px);
  background: var(--surface);
  border-color: var(--accent);
}


/* MOBILE */

@media(max-width:700px){

  .shop-header{
    min-height: 58px;
    padding: 9px 12px;
  }

  .shop-brand{
    gap: 8px;
  }

  .shop-brand-mark{
    width: 32px;
    height: 32px;
  }

  .shop-brand-text strong{
    font-size: 12px;
  }

  .shop-visitors{
    padding: 0 9px;
    font-size: 7px;
  }

  .shop-theme-button{
    width: 32px;
    height: 32px;
  }

}
