/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/



html{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::after,
*::before{
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
          margin: 0;
          padding: 0;
}


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

img{
  max-width: 100%;
}

@font-face {
  font-family: 'Roboto'; /* Имя, которое будет использоваться в CSS */
  src: url('../fonts/Roboto/Roboto-Regular.ttf') format('ttf'),
       url('../fonts/Roboto/Roboto-Regular.woff') format('woff'),
       url('../fonts/Roboto/Roboto-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root {
  --color-bg: #FAF7F2;        /* основной фон (теплый, не серый) */
  --color-surface: #FFFFFF;   /* карточки */
  --color-primary: #8B5A2B;   /* основной (мясной / коричневый) */
  --color-primary-hover: #6F451F;

  --color-accent: #E8A96B;    /* вкусный акцент (лакомства) */
  --color-accent-soft: #F3D2B3;

  --color-text: #2B2B2B;
  --color-text-light: #6B6B6B;

  --color-border: #E5DED5;
}

body{
 font-family: 'Roboto', sans-serif;
  background-color: var(--color-bg); /* ВАЖНО */
  color: var(--color-text);
  line-height: 1.5;
}

.list-reset{
    margin: 0;
    padding: 0;
    list-style: none;
  }

.btn-reset{
    padding: 0;
    border: none;
    background-color: inherit;
    cursor: pointer;
  }

.flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

h1 {
  font-size: 42px;
  font-weight: 600;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

p {
  color: var(--color-text-light);
  font-size: 16px;
}

* {
  transition: all 0.2s ease;
}

::selection {
  background: var(--color-accent);
  color: white;
}

input[type="search"]::-webkit-search-cancel-button, 
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-results-button, 
input[type="search"]::-webkit-search-results-decoration {
   display: none; 
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px; /* было 20px */
}

main{
  margin-bottom: 50px;
  position: relative;
  min-height: 500px;
}

.support-fab{
  position: fixed;
  width: 55px;
  height: 55px;
  background-color: var(--color-accent);
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border: none;
  transition: 0.2s;
}

.support-fab:hover{
  transform: scale(1.1);
}

.custom-pagination a,
.custom-pagination span {
    display: inline-block;
    padding: 6px 12px;
    margin: 3px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: 0.2s;
}

.custom-pagination a:hover {
    background: var(--color-accent-soft);
}

.custom-pagination span.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.custom-pagination span.disabled {
    color: var(--color-text-light);
    opacity: 0.5;
}





/* process */



.process {
    padding: 40px 0;
    background: var(--color-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    background: var(--color-surface);
    padding: 25px;
    border-radius: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: 0.25s;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.step-num {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 80px; /* было 190 — перебор */
    font-weight: 700;
    color: var(--color-accent-soft);
    opacity: 0.4;
    pointer-events: none;
}

.process-card:hover .step-num {
    transform: scale(1.1);
    opacity: 0.6;
}

.process-title{
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}

.process-descr{
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.process-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* reviews */



.reviews {
    padding: 40px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.reviews__contain{
  flex-direction: column;
  gap: 20px;
}

.reviews__card{
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: 0.25s;
    position: relative;
}
.reviews__card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.reviews__card-product{
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
}

.reviews__card-product:hover{
    text-decoration: underline;
}
.review-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-name {
    font-size: 14px;
    font-weight: 500;
}

.review-product {
    font-size: 13px;
    color: var(--color-text-light);
}

.reviews__card-rating{
    font-size: 18px;
}

.star{
    color: #ddd;
}

.star.active{
    color: var(--color-accent);
}
.reviews__card::before{
    content: "“";
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: var(--color-accent-soft);
    opacity: 0.5;
}

.reviews__card-text{
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
      display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.reviews__card-user{
    display: flex;
    align-items: center;
    gap: 10px;
}
.avatar{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.name{
    font-size: 14px;
    font-weight: 600;
}
.date{
    font-size: 12px;
    color: var(--color-text-light);
}
@media (max-width: 768px){
    .reviews__card{
        width: 100%;
    }
}



/* faq */

.faq {
    padding: 90px 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 20px 25px;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: 0.25s;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}


.faq-item[open] {
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-color: var(--color-accent);
}

.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 40px;
    color: var(--color-text);
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
    transition: 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(225deg);
}

.faq-item[open] p {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 4px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s;
}

.faq-item:hover::before,
.faq-item[open]::before{
    opacity: 1;
}

/* footer */



.footer{
  background: var(--color-primary);
  color: rgba(255,255,255,0.9);
  margin-top: 80px;
}

.footer__contain{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  align-items: start;
}

.footer__list-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list-item a{
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: 0.2s;
}

.footer__list-item a:hover{
  color: var(--color-accent);
}


.footer__desing{
  font-size: 18px;
  opacity: 0.5;
  transition: 0.2s;
}

.footer__desing:hover{
  opacity: 1;
  color: var(--color-accent);
}

.copyrite{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.copyrite__title{
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.copyrite__descr{
  font-size: 14px;
  opacity: 0.8;
  color: var(--color-accent-soft);
}

.copyrite__date{
  font-size: 13px;
  opacity: 0.6;
  color: var(--color-accent-soft);
}

.footer__contacts{
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.85;
}

.footer__contacts p{
  color: var(--color-accent-soft);
}

.footer__contacts a{
  color: var(--color-accent-soft);
}

.footer__contacts a:hover{
  color: var(--color-accent);
}

.footer::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}



/* header */

.header__contain{
  flex-direction: column;
  gap: 20px;
}

.header__contain-top{
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__logo{
  width: 100px;
}

.header__text{
  flex-direction: column;
  gap: 10px;
  align-items: center;
  cursor: default;
}

.header__title{
  font-size: 48px; /* было 60 — слишком жирно */
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--color-text);
}

.header__descr{
  font-size: 16px;
  letter-spacing: 2px;
  word-spacing: 8px; /* было 45 — это ломало всё */
  color: var(--color-text-light);
}

.header__addr{
  flex-direction: column;
  gap: 5px;
  text-align: center;
  cursor: default;
}

.header__social{
  flex-direction: row;
  justify-content: space-around;
  gap: 5px;

}

.header__social-item a{
   display: flex;
   align-items: center;
}

.header__social-item svg{
  width: 24px;
  height: 24px;
    transition: all 0.2s ease-in-out;
    opacity: 0.8;
}

.header__addr-item a:hover{
  color: var(--color-accent);
}

.header__social-item a:hover svg{
  opacity: 1;
  transform: scale(1.1);
}

.header__contain-bottom{
  width: 100%;
  background-color: var(--color-primary);
  padding: 15px 20px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.header__links{
  gap: 25px;
}

.header__links-item{
  font-size: 18px;
  color: white;
  position: relative;
}

.header__links-item a::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: 0.2s;
}

.header__links-item a:hover::after{
  width: 100%;
}

.header__search{
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
    position: relative;
}

.header__search input{
  width: 320px;
  font-size: 16px;
  padding: 10px 40px 10px 15px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text);
}

.header__search input:focus{
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,169,107,0.2);
}

.header__search button{
  position: absolute;
  right: 12px;
  background: none;
}

.header__search button svg path{
  stroke: var(--color-primary);
}

.header__enter{
  gap: 10px;
}

.header__enter a{
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  transition: 0.2s;
  align-items: center;
  display: flex;
  gap: 5px;
}

.header__enter a svg {
    width: 20px;
    height: 20px;
}

.header__enter a:hover{
  background: var(--color-accent);
  color: white;
}


.header__contain-top{
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}


/* process */



.process {
    padding: 40px 0;
    background: var(--color-bg);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.process-card {
    background: var(--color-surface);
    padding: 25px;
    border-radius: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: 0.25s;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.step-num {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 80px; /* было 190 — перебор */
    font-weight: 700;
    color: var(--color-accent-soft);
    opacity: 0.4;
    pointer-events: none;
}

.process-card:hover .step-num {
    transform: scale(1.1);
    opacity: 0.6;
}

.process-title{
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}

.process-descr{
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.4;
}

.process-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 2px;
}



/* faq */

.faq {
    padding: 90px 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 20px 25px;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: 0.25s;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}


.faq-item[open] {
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-color: var(--color-accent);
}

.faq-item summary {
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 40px;
    color: var(--color-text);
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
    transition: 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(225deg);
}

.faq-item[open] p {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 4px;
    height: 30px;
    background: var(--color-accent);
    border-radius: 2px;
    opacity: 0;
    transition: 0.2s;
}

.faq-item:hover::before,
.faq-item[open]::before{
    opacity: 1;
}

/* footer */



.footer{
  background: var(--color-primary);
  color: rgba(255,255,255,0.9);
  margin-top: 80px;
}

.footer__contain{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  align-items: start;
}

.footer__list-links{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list-item a{
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: 0.2s;
}

.footer__list-item a:hover{
  color: var(--color-accent);
}


.footer__desing{
  font-size: 18px;
  opacity: 0.5;
  transition: 0.2s;
}

.footer__desing:hover{
  opacity: 1;
  color: var(--color-accent);
}

.copyrite{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.copyrite__title{
  font-size: 22px;
  font-weight: 600;
  color: white;
}

.copyrite__descr{
  font-size: 14px;
  opacity: 0.8;
  color: var(--color-accent-soft);
}

.copyrite__date{
  font-size: 13px;
  opacity: 0.6;
  color: var(--color-accent-soft);
}

.footer__contacts{
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.85;
}

.footer__contacts p{
  color: var(--color-accent-soft);
}

.footer__contacts a{
  color: var(--color-accent-soft);
}

.footer__contacts a:hover{
  color: var(--color-accent);
}

.footer::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}




/* PAGE */
.chat-page{
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 80vh;
}

/* HEADER */
.chat-header{
    padding: 16px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.chat-header h2{
    margin: 5px 0 0;
    font-size: 18px;
}

.chat-subtitle{
    font-size: 12px;
    color: #777;
}

.back-btn{
    border: none;
    background: none;
    cursor: pointer;
    color: #555;
}

/* BOX */
.chat-box{
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* MESSAGE ROW */
.msg{
    display: flex;
}

/* USER RIGHT */
.msg.user{
    justify-content: flex-end;
}

/* SUPPORT LEFT */
.msg.support{
    justify-content: flex-start;
}

/* BUBBLE */
.bubble{
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* USER STYLE */
.msg.user .bubble{
    background: #111;
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* SUPPORT STYLE */
.msg.support .bubble{
    background: #FFD60A;
    color: #111;
    border-bottom-left-radius: 4px;
}

/* TEXT */
.text{
    font-size: 14px;
    line-height: 1.4;
}

/* TIME */
.time{
    font-size: 10px;
    opacity: .6;
    margin-top: 5px;
    text-align: right;
}

/* EMPTY */
.empty{
    text-align: center;
    color: #888;
    margin-top: 30px;
}

/* FORM */
.chat-form{
    display: flex;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid #eee;
    background: #fff;
}

.chat-form textarea{
    flex: 1;
    resize: none;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px;
    height: 50px;
    outline: none;
}

.chat-form button{
    width: 140px;
    border: none;
    border-radius: 12px;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.chat-form button:hover{
    opacity: .85;
}

.no-reviews{
    width:100%;
    text-align:center;
    padding:40px;
    border-radius:20px;
    background:#f5f5f5;
    color:#777;
    font-size:18px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-main-image-wrapper {
    width: 100%;
}

.product-main-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.product-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .2s;
}

.product-thumb:hover {
    transform: scale(1.05);
}

.product-thumb.active {
    border-color: #111;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;

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

    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 18px;

    flex-shrink: 0;
}

.review-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-product{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
}

.review-right{
  width: 80%;
}

.vk-home-reviews {
    padding: 80px 0;
    background: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #777;
}

.vk-home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.vk-home-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #ececec;
    transition: .2s ease;
}

.vk-home-review-card:hover {
    transform: translateY(-3px);
}

.vk-home-review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 14px;
    color: #666;
}

.vk-home-review-card p {
    line-height: 1.6;
    color: #222;
}


.map-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.map-modal.is-active {
    display: block;
}

.map-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.map-modal__content {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 24px));
    margin: 40px auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.map-modal__head {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.map-modal__head h3 {
    margin: 0 0 6px;
}

.map-modal__head p {
    margin: 0;
    color: #777;
}

.map-modal__head button {
    border: none;
    background: #f3eadf;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

.checkout-map {
    height: 520px;
    width: 100%;
}

.map-modal__save {
    width: calc(100% - 40px);
    margin: 20px;
    height: 50px;
    border: none;
    border-radius: 16px;
    background: #9c642d;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 640px) {
    .map-modal__content {
        margin: 20px auto;
    }

    .checkout-map {
        height: 420px;
    }
}
.notification-widget {
    position: relative;
}

.notification-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    cursor: pointer;
    position: relative;
    font-size: 20px;
}

.notification-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-count.is-hidden {
    display: none;
}

.notification-dropdown {
    display: none;
    position: absolute;
    top: 52px;
    right: 0;
    width: 360px;
    max-height: 460px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    z-index: 999;
    overflow: hidden;
}

.notification-dropdown.active {
    display: block;
}

.notification-dropdown__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.notification-dropdown__head button {
    border: 0;
    background: transparent;
    color: #ef4444;
    font-size: 12px;
    cursor: pointer;
}

.notification-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #111827;
    border-bottom: 1px solid #f1f1f1;
}

.notification-item:hover {
    background: #f9fafb;
}

.notification-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-item__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.notification-item__body strong {
    font-size: 14px;
}

.notification-item__body span {
    font-size: 13px;
    color: #6b7280;
}

.notification-item__body small {
    font-size: 11px;
    color: #9ca3af;
}

.notification-empty {
    padding: 18px;
    color: #6b7280;
    text-align: center;
}