:root{
  --dark:#07111f;
  --dark2:#0b1729;
  --orange:#ff8a00;
  --orange2:#ffb347;
  --white:#fff;
  --text:#0f172a;
  --muted:#64748b;
  --soft:#f5f7fb;
  --border:#e5e7eb;
  --shadow:0 24px 70px rgba(15,23,42,.14);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--soft);
  color:var(--text);
  overflow-x:hidden;
}

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

img{
  max-width:100%;
  display:block;
}

button,input,select,textarea{
  font-family:inherit;
}

button{
  cursor:pointer;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}

/* TOP BAR */

.top-bar{
  background:#020617;
  color:#cbd5e1;
  font-size:13px;
}

.top-bar-inner{
  min-height:38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
}

.top-left,
.top-right{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* HEADER */

.site-header{
  background:rgba(7,17,31,.97);
  backdrop-filter:blur(18px);
  color:white;
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.logo{
  display:flex;
  flex-direction:column;
  line-height:1;
  min-width:max-content;
}

.logo strong{
  font-size:30px;
  font-weight:900;
  letter-spacing:-1px;
}

.logo span{
  color:var(--orange);
}

.logo small{
  color:#94a3b8;
  font-size:10px;
  letter-spacing:1.6px;
  margin-top:6px;
  font-weight:800;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.desktop-nav a{
  font-size:14px;
  font-weight:800;
  color:#e5e7eb;
  transition:.25s;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  color:var(--orange);
}

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

.search-mini{
  width:230px;
  height:42px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  display:flex;
  overflow:hidden;
}

.search-mini input{
  flex:1;
  background:transparent;
  border:0;
  outline:0;
  color:white;
  padding:0 14px;
}

.search-mini input::placeholder{
  color:#94a3b8;
}

.search-mini button{
  width:44px;
  border:0;
  background:var(--orange);
}

.header-icon,
.cart-button{
  min-height:42px;
  display:flex;
  align-items:center;
  gap:7px;
  border-radius:999px;
  padding:0 13px;
  font-size:13px;
  font-weight:900;
}

.header-icon{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
}

.cart-button{
  background:var(--orange);
  color:#111827;
}

.cart-button b{
  min-width:20px;
  height:20px;
  border-radius:999px;
  background:#111827;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
}

.mobile-menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:white;
  border-radius:12px;
  font-size:23px;
}

.mobile-menu{
  display:none;
  background:#07111f;
  padding:12px 16px 18px;
  border-top:1px solid rgba(255,255,255,.08);
}

.mobile-menu.active{
  display:block;
}

.mobile-menu a{
  display:block;
  color:#e5e7eb;
  padding:14px 8px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-weight:900;
}

/* HERO */

.hero{
  min-height:720px;
  position:relative;
  color:white;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(120deg,rgba(2,6,23,.96),rgba(7,17,31,.84),rgba(255,138,0,.14)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 80% 20%,rgba(255,138,0,.35),transparent 35%),
    radial-gradient(circle at 15% 75%,rgba(37,99,235,.25),transparent 35%);
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.35fr .75fr;
  gap:45px;
  align-items:center;
  padding:80px 0;
}

.hero-badge{
  display:inline-flex;
  background:rgba(255,138,0,.14);
  color:#fed7aa;
  border:1px solid rgba(255,138,0,.38);
  padding:10px 15px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  margin-bottom:22px;
}

.hero h1{
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-3px;
  margin-bottom:24px;
  max-width:850px;
}

.hero h1 span{
  display:block;
  color:var(--orange);
}

.hero p{
  color:#dbeafe;
  font-size:19px;
  line-height:1.75;
  max-width:680px;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.btn-primary,
.btn-outline{
  min-height:52px;
  padding:0 23px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  transition:.25s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#111827;
  box-shadow:0 14px 35px rgba(255,138,0,.28);
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-outline{
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid rgba(255,255,255,.18);
}

.btn-outline:hover{
  background:white;
  color:#07111f;
}

.hero-mini-features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.hero-mini-features div{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;
  padding:16px;
  backdrop-filter:blur(12px);
}

.hero-mini-features strong{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.hero-mini-features small{
  color:#cbd5e1;
}

.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(18px);
  border-radius:28px;
  padding:30px;
  box-shadow:0 25px 70px rgba(0,0,0,.24);
}

.hero-card h3{
  font-size:28px;
  margin-bottom:20px;
}

.hero-card h3 span{
  color:var(--orange);
}

.hero-card ul{
  list-style:none;
}

.hero-card li{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#f8fafc;
  font-weight:800;
}

.hero-card li::before{
  content:"✓";
  color:var(--orange);
  margin-right:10px;
}

/* SECTIONS */

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 42px;
}

.section-head span,
.section-row span{
  color:var(--orange);
  font-size:13px;
  letter-spacing:2px;
  font-weight:900;
}

.section-head h2,
.section-row h2{
  font-size:clamp(32px,4vw,48px);
  color:#07111f;
  margin:12px 0;
  letter-spacing:-1px;
}

.section-head p,
.section-row p{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

/* CATEGORIES */

.categories{
  background:#07111f;
  padding:90px 0;
  position:relative;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.category-card{
  min-height:340px;
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#0b1729;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:white;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 55px rgba(0,0,0,.25);
  transition:.3s;
}

.category-card:hover{
  transform:translateY(-8px);
  border-color:rgba(255,138,0,.45);
}

.category-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(2,6,23,.94),rgba(2,6,23,.18),transparent);
  z-index:1;
}

.category-img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:.45s;
}

.category-card:hover .category-img{
  transform:scale(1.08);
}

.cat-car{
    background-image:url("../images/car-garage.jpg.jpeg");
}

.cat-moto{
    background-image:url("../images/motorcycle-garage.jpg.jpeg");
}

.cat-pool{
    background-image:url("../images/pool-cover.jpg.jpeg");
}

.cat-garden{
    background-image:url("../images/garden-storage.jpg.jpeg");
}

.category-icon,
.category-card h3,
.category-card p{
  position:relative;
  z-index:2;
}

.category-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  background:rgba(255,138,0,.18);
  border:1px solid rgba(255,138,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:16px;
}

.category-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.category-card p{
  color:#cbd5e1;
  line-height:1.55;
  font-size:14px;
}

/* TRUST */

.trust{
  background:#f5f7fb;
  padding:34px 0;
}

.trust-grid{
  background:white;
  border-radius:26px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  padding:24px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.trust-grid div{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:12px;
  border-right:1px solid var(--border);
}

.trust-grid div:last-child{
  border-right:0;
}

.trust-grid span{
  font-size:30px;
}

.trust-grid strong{
  color:#07111f;
  font-size:15px;
}

.trust-grid small{
  color:var(--muted);
}

/* PRODUCTS */

.featured-products{
  padding:70px 0 95px;
}

.section-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin-bottom:34px;
}

.section-row>a{
  color:var(--orange);
  font-weight:900;
  white-space:nowrap;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.product-card{
  background:white;
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
  transition:.3s;
  position:relative;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(15,23,42,.16);
}

.product-badge{
  position:absolute;
  right:14px;
  top:14px;
  z-index:3;
  background:#16a34a;
  color:white;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.product-img{
  height:230px;
  background:#e5e7eb;
  overflow:hidden;
  position:relative;
}

.product-img::after{
  content:"Ücretsiz Kargo";
  position:absolute;
  left:14px;
  top:14px;
  background:var(--orange);
  color:#111827;
  font-size:12px;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s;
}

.product-card:hover .product-img img{
  transform:scale(1.08);
}

.product-body{
  padding:20px;
}

.product-category{
  display:inline-flex;
  background:#fff7ed;
  color:#c2410c;
  border:1px solid #fed7aa;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}

.product-rating{
  color:#f59e0b;
  font-size:13px;
  font-weight:900;
  margin-bottom:10px;
}

.product-rating small{
  color:var(--muted);
  font-weight:700;
}

.product-body h3{
  color:#07111f;
  font-size:19px;
  line-height:1.25;
  margin-bottom:10px;
}

.product-body p{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
  margin-bottom:16px;
  min-height:66px;
}

.product-price{
  color:#2563eb;
  font-size:24px;
  font-weight:950;
  margin-bottom:16px;
}

.product-actions{
  display:grid;
  grid-template-columns:1fr 48px;
  gap:10px;
}

.product-btn{
  min-height:48px;
  background:#07111f;
  color:white;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.product-btn:hover{
  background:var(--orange);
  color:#111827;
}

.add-cart-btn{
  width:48px;
  height:48px;
  border:0;
  border-radius:14px;
  background:var(--orange);
  color:#111827;
  font-size:18px;
  font-weight:900;
}

/* CUSTOM CTA */

.custom-cta{
  background:linear-gradient(135deg,#07111f,#132238);
  color:white;
  padding:90px 0;
  overflow:hidden;
}

.custom-inner{
  display:grid;
  grid-template-columns:1.4fr auto;
  gap:50px;
  align-items:center;
}

.custom-inner span{
  color:#ffb347;
  font-size:14px;
  font-weight:900;
  letter-spacing:2px;
}

.custom-inner h2{
  margin-top:15px;
  font-size:48px;
  line-height:1.15;
  max-width:780px;
}

.custom-inner p{
  margin-top:20px;
  color:#cbd5e1;
  line-height:1.8;
  font-size:17px;
}

/* CONTACT */

.contact{
  padding:100px 0;
  background:white;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 500px;
  gap:60px;
  align-items:center;
}

.mini-title{
  display:inline-block;
  color:var(--orange);
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:18px;
}

.contact h2{
  font-size:46px;
  line-height:1.2;
  margin-bottom:20px;
}

.contact p{
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
}

.contact-list{
  margin-top:35px;
}

.contact-list p{
  margin-bottom:16px;
  font-weight:800;
  color:#0f172a;
}

.contact-form{
  background:white;
  padding:35px;
  border-radius:28px;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  margin-bottom:18px;
  border:1px solid #dbe3ec;
  border-radius:14px;
  padding:15px 18px;
  font-size:15px;
  outline:0;
}

.contact-form textarea{
  resize:none;
  height:140px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:var(--orange);
}

.contact-form button{
  width:100%;
  height:54px;
  border:0;
  border-radius:14px;
  background:var(--orange);
  color:#111827;
  font-size:16px;
  font-weight:900;
}

/* FOOTER */

.footer{
  background:#020617;
  color:white;
  padding-top:70px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:45px;
}

.footer-logo{
  margin-bottom:18px;
}

.footer p{
  color:#94a3b8;
  line-height:1.8;
}

.footer h4{
  margin-bottom:18px;
  font-size:18px;
}

.footer a{
  display:block;
  color:#cbd5e1;
  margin-bottom:12px;
}

.footer a:hover{
  color:var(--orange);
}

.footer-bottom{
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
  text-align:center;
}

.whatsapp-btn{
  position:fixed;
  right:24px;
  bottom:24px;
  width:66px;
  height:66px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  box-shadow:0 18px 45px rgba(37,211,102,.35);
  z-index:9999;
  font-size:12px;
}

.toast-message{
  position:fixed;
  left:50%;
  bottom:30px;
  transform:translateX(-50%) translateY(30px);
  background:#07111f;
  color:white;
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 18px 45px rgba(0,0,0,.25);
  z-index:99999;
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.toast-message.active{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* PREMIUM ÜRÜN KARTI DÜZELTME */

.premium-product-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  transition: .3s;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.premium-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 75px rgba(15,23,42,.16);
}

.premium-image-box {
  height: 245px;
  position: relative;
  overflow: hidden;
  background: #e5e7eb;
}

.premium-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.premium-product-card:hover .premium-image-box img {
  transform: scale(1.08);
}

.premium-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.cargo-badge,
.status-badge {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}

.cargo-badge {
  background: #ff8a00;
  color: #111827;
}

.status-badge {
  background: #15803d;
  color: white;
}

.favorite-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  font-size: 25px;
  font-weight: 900;
  z-index: 3;
}

.premium-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.premium-category {
  width: fit-content;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 13px;
}

.premium-content h3 {
  color: #07111f;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
  min-height: 50px;
}

.premium-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 13px;
  min-height: 44px;
}

.premium-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.premium-rating span {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: -1px;
}

.premium-rating small {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.premium-price-row {
  margin-top: auto;
  margin-bottom: 18px;
}

.premium-price-row del {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.premium-price-row strong {
  display: block;
  color: #2563eb;
  font-size: 28px;
  font-weight: 950;
}

.premium-actions {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 10px;
  align-items: center;
}

.premium-detail-btn {
  min-height: 54px;
  border-radius: 15px;
  background: #07111f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: .25s;
}

.premium-detail-btn:hover {
  background: #ff8a00;
  color: #111827;
}

.premium-cart-btn {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 15px;
  background: #ff8a00;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

@media(max-width: 700px) {
  .premium-image-box {
    height: 230px;
  }

  .premium-content h3,
  .premium-content p {
    min-height: auto;
  }
}

/* ==========================================
   PRODUCTS PAGE
========================================== */

.products-page{
    padding:70px 0 100px;
    background:#f7f9fc;
}

.products-hero{
    text-align:center;
    margin-bottom:50px;
}

.products-hero span{
    display:inline-block;
    color:#ff8a00;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:10px;
}

.products-hero h1{
    font-size:52px;
    color:#07111f;
    margin-bottom:15px;
}

.products-hero p{
    color:#64748b;
    font-size:18px;
}

.products-layout{
    display:grid;
    grid-template-columns:290px 1fr;
    gap:30px;
}

.filters-box{

    background:#fff;

    border-radius:24px;

    padding:25px;

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

    border:1px solid #ececec;

    position:sticky;

    top:100px;

    height:max-content;

}

.filters-box h3{

    margin-bottom:25px;

    color:#07111f;

}

.filters-box label{

    display:block;

    margin-bottom:8px;

    margin-top:18px;

    font-weight:700;

}

.filters-box input,

.filters-box select{

    width:100%;

    height:48px;

    border-radius:12px;

    border:1px solid #d8dee9;

    padding:0 14px;

    font-size:15px;

    outline:none;

}

.filters-box input:focus,

.filters-box select:focus{

    border-color:#ff8a00;

}

.filters-box button{

    width:100%;

    height:50px;

    margin-top:25px;

    border:none;

    border-radius:14px;

    background:#07111f;

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.filters-box button:hover{

    background:#ff8a00;

    color:#07111f;

}

.products-main{

    width:100%;

}

.products-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.products-top h2{

    font-size:34px;

    color:#07111f;

}

.products-top p{

    color:#64748b;

    margin-top:6px;

}

#allProducts{

    display:grid;

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

    gap:28px;

}

@media(max-width:1100px){

.products-layout{

grid-template-columns:1fr;

}

.filters-box{

position:relative;

top:0;

}

#allProducts{

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

}

}

@media(max-width:700px){

.products-hero h1{

font-size:34px;

}

.products-top{

flex-direction:column;

align-items:flex-start;

}

#allProducts{

grid-template-columns:1fr;

}

}

/* ==========================================
   CART PAGE
========================================== */

.cart-page{
    background:#f7f9fc;
    padding:70px 0 100px;
}

.cart-title{
    text-align:center;
    margin-bottom:45px;
}

.cart-title span{
    color:#ff8a00;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
}

.cart-title h1{
    margin:15px 0;
    font-size:50px;
    color:#07111f;
}

.cart-title p{
    color:#64748b;
    font-size:17px;
}

.cart-layout{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:30px;
}

.cart-items-box{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.cart-item{
    display:grid;
    grid-template-columns:130px 1fr auto;
    gap:20px;
    align-items:center;
    padding:20px 0;
    border-bottom:1px solid #ececec;
}

.cart-item:last-child{
    border-bottom:none;
}

.cart-item img{
    width:130px;
    height:100px;
    object-fit:cover;
    border-radius:16px;
}

.cart-info h3{
    color:#07111f;
    margin-bottom:8px;
    font-size:21px;
}

.cart-info p{
    color:#64748b;
    margin-bottom:12px;
}

.cart-price{
    color:#2563eb;
    font-size:24px;
    font-weight:900;
}

.qty-box{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:15px;
}

.qty-btn{
    width:38px;
    height:38px;
    border:none;
    border-radius:10px;
    background:#07111f;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.qty-btn:hover{
    background:#ff8a00;
    color:#111827;
}

.qty-number{
    min-width:30px;
    text-align:center;
    font-weight:800;
}

.remove-btn{
    border:none;
    background:#ef4444;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.remove-btn:hover{
    background:#dc2626;
}

.cart-summary{
    background:#fff;
    border-radius:24px;
    padding:28px;
    height:max-content;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
}

.cart-summary h3{
    margin-bottom:25px;
    color:#07111f;
}

.summary-row,
.summary-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.summary-row span,
.summary-total span{
    color:#64748b;
}

.summary-row strong,
.summary-total strong{
    color:#07111f;
}

.summary-total strong{
    font-size:28px;
    color:#2563eb;
}

.summary-line{
    height:1px;
    background:#ececec;
    margin:20px 0;
}

.free-cargo{
    color:#16a34a !important;
}

.cargo-note{
    background:#f0fdf4;
    color:#166534;
    border:1px solid #bbf7d0;
    padding:15px;
    border-radius:14px;
    margin:25px 0;
    font-weight:700;
}

.checkout-btn{
    width:100%;
    height:56px;
    background:#ff8a00;
    color:#111827;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    transition:.3s;
}

.checkout-btn:hover{
    transform:translateY(-2px);
}

.continue-shopping{
    display:block;
    text-align:center;
    margin-top:18px;
    color:#07111f;
    font-weight:700;
}

.empty-cart{
    text-align:center;
    padding:80px 20px;
}

.empty-cart h2{
    margin-top:20px;
    color:#07111f;
}

.empty-cart p{
    color:#64748b;
    margin:15px 0 30px;
}

@media(max-width:1000px){

.cart-layout{
grid-template-columns:1fr;
}

.cart-summary{
position:relative;
top:0;
}

}

@media(max-width:700px){

.cart-item{
grid-template-columns:1fr;
text-align:center;
}

.cart-item img{
width:100%;
height:220px;
}

.qty-box{
justify-content:center;
}

.cart-title h1{
font-size:36px;
}

}

/* ==========================================
   PRODUCT DETAIL PAGE
========================================== */

.product-detail-page {
  background: #f7f9fc;
  padding: 55px 0 90px;
}

.breadcrumb {
  margin-bottom: 30px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a {
  color: #07111f;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.gallery-column,
.info-column {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.main-image {
  height: 470px;
  border-radius: 24px;
  overflow: hidden;
  background: #e5e7eb;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.thumbnail-list img {
  height: 95px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid transparent;
  cursor: pointer;
}

.thumbnail-list img.active {
  border-color: #ff8a00;
}

.detail-category {
  display: inline-block;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.info-column h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #07111f;
  margin-bottom: 14px;
}

.detail-rating {
  color: #f59e0b;
  font-weight: 900;
  margin-bottom: 20px;
}

.detail-rating span {
  color: #64748b;
  margin-left: 8px;
}

.detail-price {
  margin-bottom: 24px;
}

.detail-price del {
  display: block;
  color: #94a3b8;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.detail-price strong {
  display: block;
  color: #2563eb;
  font-size: 42px;
  font-weight: 950;
}

#detailDescription {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 26px;
}

.detail-features {
  background: #f8fafc;
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 28px;
  border: 1px solid #e5e7eb;
}

.detail-features h3 {
  margin-bottom: 14px;
  color: #07111f;
}

.detail-features ul {
  list-style: none;
}

.detail-features li {
  padding: 10px 0;
  color: #334155;
  font-weight: 700;
  border-bottom: 1px solid #e5e7eb;
}

.detail-features li:last-child {
  border-bottom: 0;
}

.detail-features li::before {
  content: "✓";
  color: #ff8a00;
  margin-right: 10px;
  font-weight: 900;
}

.purchase-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
}

.quantity-box {
  height: 56px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  border: 1px solid #dbe3ec;
  border-radius: 15px;
  overflow: hidden;
}

.quantity-box button {
  border: 0;
  background: #07111f;
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.quantity-box input {
  border: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  outline: 0;
}

.detail-cart-btn,
.buy-now-btn {
  height: 56px;
  border: 0;
  border-radius: 15px;
  font-weight: 900;
  font-size: 16px;
}

.detail-cart-btn {
  background: #ff8a00;
  color: #111827;
}

.buy-now-btn {
  grid-column: 1 / -1;
  background: #07111f;
  color: white;
}

.detail-extra {
  padding: 70px 0;
  background: white;
}

.detail-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.detail-tabs button {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.detail-tabs button.active {
  background: #ff8a00;
  color: #111827;
  border-color: #ff8a00;
}

.detail-tab-content {
  background: #f8fafc;
  border-radius: 26px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.detail-tab-content h2 {
  color: #07111f;
  font-size: 30px;
  margin-bottom: 14px;
}

.detail-tab-content p {
  color: #64748b;
  line-height: 1.9;
  white-space: pre-line;
}

.similar-products {
  background: #f7f9fc;
  padding: 75px 0 100px;
}

@media(max-width: 950px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .main-image {
    height: 380px;
  }
}

@media(max-width: 650px) {
  .product-detail-page {
    padding: 35px 0 70px;
  }

  .gallery-column,
  .info-column {
    padding: 18px;
    border-radius: 22px;
  }

  .main-image {
    height: 290px;
  }

  .thumbnail-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .thumbnail-list img {
    height: 78px;
  }

  .info-column h1 {
    font-size: 30px;
  }

  .detail-price strong {
    font-size: 34px;
  }

  .purchase-box {
    grid-template-columns: 1fr;
  }

  .quantity-box {
    width: 100%;
  }
}

.whatsapp-detail-btn {
  grid-column: 1 / -1;
  height: 56px;
  border-radius: 15px;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.detail-info-boxes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.detail-info-boxes div {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  font-weight: 800;
  color: #334155;
}

@media(max-width: 650px) {
  .detail-info-boxes {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CHECKOUT PAGE
========================================== */

.checkout-page{
    background:#f7f9fc;
    padding:70px 0 100px;
}

.checkout-title{
    text-align:center;
    margin-bottom:45px;
}

.checkout-title span{
    color:#ff8a00;
    font-size:14px;
    font-weight:900;
    letter-spacing:2px;
}

.checkout-title h1{
    margin:15px 0;
    font-size:48px;
    color:#07111f;
}

.checkout-title p{
    color:#64748b;
    font-size:17px;
}

.checkout-layout{
    display:grid;
    grid-template-columns:1fr 380px;
    gap:30px;
}

.checkout-form-box,
.checkout-summary{
    background:#fff;
    border-radius:24px;
    padding:30px;
    border:1px solid #e5e7eb;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.checkout-summary{
    position:sticky;
    top:100px;
    height:max-content;
}

.checkout-form-box h2{
    color:#07111f;
    margin-bottom:20px;
}

.checkout-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
}

.checkout-grid input,
.checkout-form-box textarea{
    width:100%;
    border:1px solid #dbe3ec;
    border-radius:14px;
    padding:15px;
    font-size:15px;
    outline:none;
}

.checkout-grid input:focus,
.checkout-form-box textarea:focus{
    border-color:#ff8a00;
}

.checkout-form-box textarea{
    height:120px;
    resize:none;
    margin-bottom:30px;
}

.payment-methods{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:25px;
}

.payment-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    border:2px solid #e5e7eb;
    border-radius:16px;
    padding:18px;
    cursor:pointer;
}

.payment-card input{
    margin-top:5px;
}

.payment-card strong{
    display:block;
    color:#07111f;
    margin-bottom:4px;
}

.payment-card small{
    color:#64748b;
}

.payment-card.disabled{
    opacity:.55;
    cursor:not-allowed;
}

.iban-box{
    background:#fff7ed;
    border:2px solid #fed7aa;
    border-radius:18px;
    padding:22px;
    margin-bottom:25px;
}

.iban-box h3{
    color:#c2410c;
    margin-bottom:15px;
}

.iban-box p{
    margin-bottom:10px;
    color:#07111f;
    font-weight:700;
}

.iban-box span{
    color:#2563eb;
    font-weight:900;
}

.iban-box small{
    display:block;
    margin-top:10px;
    color:#64748b;
}

.complete-order-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#ff8a00,#ffb347);
    color:#111827;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
    transition:.3s;
}

.complete-order-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(255,138,0,.35);
}

#checkoutItems{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:25px;
}

.checkout-item{
    display:flex;
    gap:14px;
    align-items:center;
}

.checkout-item img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
}

.checkout-item h4{
    color:#07111f;
    margin-bottom:4px;
    font-size:15px;
}

.checkout-item p{
    color:#64748b;
    font-size:13px;
}

#orderResult{
    margin-top:20px;
}

.order-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
    border-radius:14px;
    padding:16px;
    font-weight:800;
}

.order-error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fecaca;
    border-radius:14px;
    padding:16px;
    font-weight:800;
}

@media(max-width:1000px){

.checkout-layout{
grid-template-columns:1fr;
}

.checkout-summary{
position:relative;
top:0;
}

}

@media(max-width:700px){

.checkout-grid{
grid-template-columns:1fr;
}

.checkout-title h1{
font-size:36px;
}

.checkout-form-box,
.checkout-summary{
padding:20px;
}

}

/* ==========================
   ORDER TRACK PAGE
========================== */

.track-page{
    padding:80px 0;
    background:#f5f7fb;
    min-height:80vh;
}

.track-title{
    text-align:center;
    margin-bottom:45px;
}

.track-title span{
    display:inline-block;
    background:#ff8a00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.track-title h1{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.track-title p{
    color:#64748b;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.track-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.track-search{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.track-search input{
    flex:1;
    height:58px;
    border:1px solid #dbe3ec;
    border-radius:14px;
    padding:0 18px;
    font-size:16px;
    outline:none;
}

.track-search input:focus{
    border-color:#ff8a00;
}

.track-search button{
    min-width:180px;
    border:none;
    border-radius:14px;
    background:#ff8a00;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.track-search button:hover{
    background:#e97800;
}

.track-result-card{
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:28px;
    background:#fafafa;
}

.track-result-card h2{
    margin-bottom:18px;
    color:#0f172a;
}

.track-info{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.track-item{
    background:#fff;
    border-radius:14px;
    padding:18px;
    border:1px solid #ececec;
}

.track-item strong{
    display:block;
    margin-bottom:8px;
    color:#475569;
}

.track-status{
    margin-top:25px;
    background:#fff7ed;
    border-left:5px solid #ff8a00;
    border-radius:12px;
    padding:18px;
}

.track-status h3{
    color:#ff8a00;
    margin-bottom:10px;
}

.track-not-found{
    text-align:center;
    padding:40px;
    color:#ef4444;
    font-weight:700;
}

@media(max-width:768px){

.track-search{
    flex-direction:column;
}

.track-search button{
    width:100%;
    height:55px;
}

.track-info{
    grid-template-columns:1fr;
}

.track-title h1{
    font-size:30px;
}

.track-box{
    padding:22px;
}

}

/* ==========================
   PREMIUM AUTH PAGE
========================== */

.auth-premium-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: #07111f;
}

.auth-left {
  position: relative;
  padding: 45px 70px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(120deg, rgba(7,17,31,.92), rgba(37,99,235,.62)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.auth-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,138,0,.28), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(37,99,235,.28), transparent 35%);
  pointer-events: none;
}

.auth-brand,
.auth-left-content {
  position: relative;
  z-index: 2;
}

.auth-brand {
  color: white;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.auth-brand strong {
  font-size: 40px;
  font-weight: 950;
}

.auth-brand span {
  color: #ff8a00;
}

.auth-brand small {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.auth-left-content {
  max-width: 620px;
}

.auth-left-content span {
  display: inline-block;
  background: rgba(255,138,0,.16);
  border: 1px solid rgba(255,138,0,.35);
  color: #ffb347;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.auth-left-content h1 {
  font-size: 62px;
  line-height: 1;
  margin-bottom: 22px;
}

.auth-left-content p {
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
}

.auth-benefits {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.auth-benefits div {
  width: fit-content;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 900;
}

.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  background:
    radial-gradient(circle at top right, rgba(255,138,0,.14), transparent 35%),
    #f5f7fb;
}

.auth-panel {
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 30px;
  padding: 38px;
  box-shadow: 0 25px 70px rgba(15,23,42,.18);
  border: 1px solid #e5e7eb;
}

.auth-panel-title {
  margin-bottom: 28px;
}

.auth-panel-title h2 {
  font-size: 38px;
  color: #07111f;
  margin-bottom: 8px;
}

.auth-panel-title p {
  color: #64748b;
}

.auth-panel label {
  display: block;
  color: #07111f;
  font-weight: 900;
  margin-bottom: 8px;
}

.auth-panel input {
  width: 100%;
  height: 56px;
  border: 1px solid #dbe3ec;
  border-radius: 16px;
  padding: 0 16px;
  margin-bottom: 18px;
  font-size: 15px;
  outline: none;
}

.auth-panel input:focus {
  border-color: #ff8a00;
  box-shadow: 0 0 0 4px rgba(255,138,0,.12);
}

.auth-panel button {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  color: #111827;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  margin-top: 6px;
}

.auth-switch {
  text-align: center;
  color: #64748b;
  margin-top: 22px;
  font-weight: 700;
}

.auth-switch a {
  color: #ff8a00;
  font-weight: 950;
}

.auth-back {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #07111f;
  font-weight: 900;
}

#authMessage {
  margin-top: 16px;
  text-align: center;
  font-weight: 900;
}

@media(max-width: 900px) {
  .auth-premium-page {
    grid-template-columns: 1fr;
  }

  .auth-left {
    min-height: 420px;
    padding: 35px 25px;
  }

  .auth-left-content h1 {
    font-size: 42px;
  }

  .auth-right {
    padding: 25px;
  }
}

@media(max-width: 520px) {
  .auth-panel {
    padding: 26px;
    border-radius: 22px;
  }

  .auth-panel-title h2 {
    font-size: 30px;
  }
}

/* HEADER SEARCH VE USER BUTON DÜZELTME */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.search-box {
  overflow: hidden;
}

.search-box input {
  min-width: 0;
}

.search-box button,
.search-btn {
  flex-shrink: 0;
  overflow: hidden;
}

.header-actions a[href="#"] {
  min-width: 120px;
  max-width: 155px;
  height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.1;
  overflow: hidden;
  word-break: break-word;
}

@media(max-width: 900px) {
  .header-actions a[href="#"] {
    max-width: 130px;
    font-size: 13px;
  }

  .search-box {
    max-width: 260px;
  }
}

/* ==========================
   ACCOUNT PAGE
========================== */

.account-page {
  background: #f5f7fb;
  padding: 70px 0 100px;
}

.account-title {
  text-align: center;
  margin-bottom: 45px;
}

.account-title span {
  color: #ff8a00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.account-title h1 {
  margin: 15px 0;
  font-size: 48px;
  color: #07111f;
}

.account-title p {
  color: #64748b;
  font-size: 17px;
}

.account-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
}

.account-sidebar {
  background: #07111f;
  color: white;
  border-radius: 26px;
  padding: 24px;
  height: max-content;
  position: sticky;
  top: 100px;
}

.account-user-box {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.account-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ff8a00;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 14px;
}

.account-user-box h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.account-user-box p {
  color: #cbd5e1;
  font-size: 13px;
  word-break: break-word;
}

.account-menu-btn,
.account-logout-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.account-menu-btn {
  background: rgba(255,255,255,.08);
  color: #e5e7eb;
}

.account-menu-btn.active,
.account-menu-btn:hover {
  background: #ff8a00;
  color: #111827;
}

.account-logout-btn {
  background: #ef4444;
  color: white;
}

.account-content {
  min-width: 0;
}

.account-tab {
  display: none;
}

.account-tab.active {
  display: block;
}

.account-card {
  background: white;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
  border: 1px solid #e5e7eb;
}

.account-card h2 {
  font-size: 30px;
  color: #07111f;
  margin-bottom: 24px;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.account-card label {
  display: block;
  font-weight: 900;
  color: #07111f;
  margin-bottom: 8px;
}

.account-card input,
.account-card textarea {
  width: 100%;
  border: 1px solid #dbe3ec;
  border-radius: 14px;
  padding: 15px;
  font-size: 15px;
  outline: none;
  margin-bottom: 18px;
}

.account-card input:focus,
.account-card textarea:focus {
  border-color: #ff8a00;
}

.account-card textarea {
  min-height: 160px;
  resize: vertical;
}

.account-save-btn {
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg,#ff8a00,#ffb347);
  color: #111827;
  padding: 15px 22px;
  font-weight: 950;
  cursor: pointer;
}

.account-muted {
  color: #64748b;
  line-height: 1.7;
}

.my-order-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
  background: #f8fafc;
}

.my-order-card h4 {
  color: #07111f;
  margin-bottom: 10px;
}

.my-order-card p {
  margin-bottom: 7px;
  color: #334155;
}

.my-order-status {
  display: inline-block;
  margin-top: 8px;
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 13px;
}

@media(max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: relative;
    top: 0;
  }

  .account-form-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .account-title h1 {
    font-size: 34px;
  }

  .account-card {
    padding: 22px;
  }
}

.favorite-list {
  display: grid;
  gap: 14px;
}

.favorite-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 14px;
  background: #f8fafc;
}

.favorite-item img {
  width: 90px;
  height: 75px;
  object-fit: cover;
  border-radius: 14px;
}

.favorite-item h4 {
  color: #07111f;
  margin-bottom: 6px;
}

.favorite-item p {
  color: #2563eb;
  font-weight: 900;
}

.favorite-item a {
  background: #ff8a00;
  color: #111827;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
}

@media(max-width: 650px) {
  .favorite-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .favorite-item img {
    width: 100%;
    height: 180px;
  }
}

/* ==========================
   USER DROPDOWN
========================== */

.user-dropdown {
  position: relative;
  flex-shrink: 0;
}

.user-dropdown-btn {
  height: 54px;
  min-width: 155px;
  max-width: 190px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: white;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
}

.user-dropdown-btn span {
  max-width: 95px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 64px;
  width: 230px;
  background: white;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  border: 1px solid #e5e7eb;
  z-index: 999;
}

.user-dropdown-menu.active {
  display: block;
}

.user-dropdown-menu a,
.user-dropdown-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #07111f;
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}

.user-dropdown-menu a:hover,
.user-dropdown-menu button:hover {
  background: #fff7ed;
  color: #c2410c;
}

.address-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 25px;
}

.address-form textarea,
.address-form button {
  grid-column: 1 / -1;
}

.address-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
}

.address-item h4 {
  color: #07111f;
  margin-bottom: 8px;
}

.address-item p {
  color: #475569;
  margin-bottom: 6px;
}

.address-delete-btn {
  margin-top: 10px;
  border: 0;
  background: #ef4444;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

@media(max-width: 700px) {
  .address-form {
    grid-template-columns: 1fr;
  }
}

/* ============================
   CUSTOM ORDER PAGE
============================ */

.call-float,
.whatsapp-float {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.call-float img,
.whatsapp-float img {
    width: 34px;
    height: 34px;
}

.call-float i,
.whatsapp-float i {
    font-size: 34px;
}

.floating-buttons{
    gap:18px;
}

.floating-buttons {
  position: fixed !important;
  right: 22px !important;
  bottom: 34px !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.call-float,
.whatsapp-float {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  min-height: 72px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.call-float {
  background: #ff8a00 !important;
  color: #07111f !important;
  font-size: 34px !important;
  text-decoration: none !important;
}

.whatsapp-float {
  background: #25d366 !important;
}

.whatsapp-float img {
  width: 36px !important;
  height: 36px !important;
}