/* ===== BASE ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{

  background:
  radial-gradient(circle at top left,#1b1b1b,#080808 65%);

  color:white;

  min-height:100vh;

  overflow-x:hidden;
}

body::before{

  content:"";

  position:fixed;
  inset:0;

  opacity:.07;

  background:
  linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
  linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

  background-size:4px 4px;

  pointer-events:none;
}

/* ===== HEADER ===== */

.header{

  width:100%;

  padding:24px 34px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  border-bottom:
  1px solid rgba(255,255,255,.06);

  position:sticky;
  top:0;

  background:
  rgba(10,10,10,.82);

  backdrop-filter:blur(12px);

  z-index:100;
}

.logo{

  font-size:24px;
  font-weight:700;

  color:#f2d37b;
}

/* ===== NAV ===== */

.nav{

  display:flex;
  gap:18px;
}

.nav a{

  text-decoration:none;

  color:#b8b8b8;

  transition:.25s;
}

.nav a:hover{

  color:#f2d37b;
}

/* ===== BURGER ===== */

.burger{

  display:none;

  width:46px;
  height:46px;

  border-radius:14px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  cursor:pointer;

  justify-content:center;
  align-items:center;

  flex-direction:column;

  gap:5px;
}

.burger span{

  width:20px;
  height:2px;

  border-radius:999px;

  background:white;

  transition:.25s;
}

/* ===== CLOSE MENU BUTTON ===== */

.close-menu{

  position:absolute;

  top:24px;
  right:24px;

  width:46px;
  height:46px;

  border:none;

  border-radius:14px;

  cursor:pointer;

  font-size:20px;

  color:#f2d37b;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,215,120,.12);

  transition:.25s;
}

.close-menu:hover{

  background:
  linear-gradient(
    135deg,
    #d3a54b,
    #f2d37b
  );

  color:#151515;

  box-shadow:
  0 0 18px rgba(255,208,0,.18);

  transform:rotate(90deg);
}

/* ===== MOBILE MENU ===== */

.mobile-menu{

  position:fixed;

  top:0;
  right:-100%;

  width:280px;
  height:100vh;

  background:
  rgba(15,15,15,.98);

  backdrop-filter:blur(18px);

  border-left:
  1px solid rgba(255,255,255,.06);

  padding:90px 30px;

  transition:.35s;

  z-index:999;
}

.mobile-menu.active{

  right:0;
}

.mobile-menu a{

  display:block;

  margin-bottom:26px;

  text-decoration:none;

  color:#d0d0d0;

  font-size:18px;
}

.owner-container{

  width:100%;

  display:flex;

  flex-direction:column;

  align-items:center;

  padding:40px 20px;
}



/* ===== MOBILE ===== */

@media(max-width:768px){

  .nav{
    display:none;
  }

  .burger{
    display:flex;
  }

  .page-title{
    font-size:34px;
  }

  .order-header{

    flex-direction:column;
    align-items:flex-start;

    gap:14px;
  }

  .buttons{

    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .profile-grid{

    grid-template-columns:1fr;
  }

  .panel-card{

    padding:24px;
  }

  .info-item{

    flex-direction:column;

    gap:8px;
  }
}

.stats-wrapper{

    width:100%;

    max-width:1000px;

    margin:40px auto;

    display:flex;

    flex-direction:column;

    gap:30px;

    padding:0 20px;
}

.stats-card{

    background:#111;

    border-radius:28px;

    padding:35px;

    border:
    1px solid rgba(
        242,
        211,
        123,
        .12
    );

    box-shadow:
    0 0 30px rgba(
        0,
        0,
        0,
        .25
    );
}

.stats-title{

    font-size:28px;

    margin-bottom:10px;
}

.stats-subtitle{

    color:#999;

    margin-bottom:30px;
}

/* TOP LINE */

.card-top-line{

    width:100%;

    height:3px;

    border-radius:999px;

    margin-bottom:25px;

    background:
    linear-gradient(
        to right,
        #d3a54b,
        #f2d37b
    );
}

/* HERO */

.stats-hero{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.hero-card{

    padding:25px;

    border-radius:22px;

    background:
    rgba(255,255,255,.03);

    text-align:center;
}

.hero-number{

    font-size:46px;

    font-weight:700;

    color:#f2d37b;
}

.hero-label{

    color:#999;

    margin-top:10px;
}

/* ВКУСЫ */

.taste-list{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.taste-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;
}

.progress{

    height:10px;

    border-radius:999px;

    background:
    rgba(255,255,255,.06);

    overflow:hidden;
}

.progress-fill{

    height:100%;

    border-radius:999px;

    background:
    linear-gradient(
        to right,
        #d3a54b,
        #f2d37b
    );
}

/* КАТЕГОРИИ */

.category-grid{

    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(220px,1fr)
    );

    gap:25px;
}

.category-card{

    text-align:center;
}

.circle-chart{

    width:140px;
    height:140px;

    border-radius:50%;

    background:
    conic-gradient(
        #f2d37b 48%,
        #222 0
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.circle-inner{

    width:100px;
    height:100px;

    border-radius:50%;

    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#f2d37b;

    font-size:24px;

    font-weight:700;
    box-shadow:
    0 0 25px rgba(
        242,
        211,
        123,
        .15
    );
}

.category-name{

    margin-top:15px;

    font-size:18px;
}

/* МИКСЫ */

.mix-grid{

    display:grid;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(250px,1fr)
    );

    gap:20px;
}

.mix-card{

    padding:25px;

    border-radius:22px;

    background:
    rgba(255,255,255,.03);
}

.mix-rank{

    color:#f2d37b;

    margin-bottom:15px;

    font-weight:700;
}

.mix-name{

    margin-bottom:15px;

    line-height:1.6;
}

.mix-orders{

    color:#999;
}

/* ТРЕНД */

.trend-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(
        242,
        211,
        123,
        .12
    );

    border-radius:24px;

    padding:25px;
}

.trend-icon{

    font-size:32px;
}

.trend-title{

    font-size:22px;

    color:#f2d37b;

    margin-bottom:10px;
}

.trend-text{

    color:#aaa;

    line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

    .stats-hero{

        grid-template-columns:1fr;
    }

    .mix-grid{

        grid-template-columns:1fr;
    }

    .category-grid{

        grid-template-columns:1fr;
    }

    .stats-card{

        padding:25px;
    }

}

/*     ======FOOTER=======    */

.footer{

  margin-top:80px;

  border-top:
  1px solid rgba(255,255,255,.06);

  background:
  rgba(10,10,10,.45);

  backdrop-filter:blur(10px);

  position: sticky;
  bottom: 0;
}

.footer-content{

  max-width:1100px;

  margin:auto;

  padding:30px 20px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  flex-wrap:wrap;

  gap:30px;
}

.footer-info h3{

  color:#f2d37b;

  margin-bottom:12px;

  font-size:22px;
}

.footer-info p{

  color:#a9a9a9;

  line-height:1.8;
}

/* ===== SOCIALS ===== */

.socials{

  display:flex;

  gap:16px;
}

.social-btn{

  width:56px;
  height:56px;

  border-radius:18px;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  color:#f2d37b;

  background:
  rgba(255,255,255,.03);

  border:
  1px solid rgba(255,215,120,.12);

  transition:.25s;

  box-shadow:
  0 0 0 rgba(255,208,0,0);
}

.social-btn svg{

  width:24px;
  height:24px;
}

.social-btn:hover{

  transform:translateY(-3px);

  background:
  linear-gradient(
    135deg,
    #d3a54b,
    #f2d37b
  );

  color:#151515;

  box-shadow:
  0 0 20px rgba(255,208,0,.18);
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .footer-content{
    padding: 20px;
    text-align:center;
  }

  .socials{

    justify-content:center;
  }

  .footer-title{
    display: none;
  }
}