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

html {
    background: linear-gradient(180deg, #ffffff 0%, #def0db 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #1e272e;
}

body {
    font-family: Arial, sans-serif;
    
}

.header {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;

    background-color: white;

   

    position: sticky;
    top: 0;

    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 63px;
    height: 63px;

    object-fit: cover;

    border-radius: 12px;
}

.brand-text h1 {
    font-size: 18px;
    letter-spacing: 1px;
    color: #2d2d2d;
}

.brand-text p {
    font-size: 14px;
    color: #777;
    margin-top: 2px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    background: none;
    border: none;

    font-size: 20px;
    color: #222;

    cursor: pointer;

    padding: 2px;

    transition: 0.2s;
}

.icon-button:hover {
    opacity: 0.6;
}

.icon-button:active {
    transform: scale(0.92);
}

.marginyes {
    margin: 20px;
}


/*  Меню 3 полоски 🔽  */
.menu {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background: white;

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

    gap: 20px;

    z-index: 2000;

    /* скрыто по умолчанию */
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);

    transition: 0.25s ease;
}

.menu:target {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}



.menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    display: flex;
}
.menu a {
    text-decoration: none;
    font-size: 22px;
    color: #222;
}

.close {
    position: absolute;
    top: 30px;
    right: 15px;

    font-size: 28px;
}
/*  Меню 3 полоски 🔼  */



/*  Контакти 🔽  */
.contactss { display: none; }
.contactss:target { display: block; }

.contactsss {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.contactssss {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px;
  border-radius: 12px;
  min-width: 250px;
  z-index: 1000;
  width: 352px;
}

.contactsclose {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  text-decoration: none;
  background-color: #24c365;
  color: white;
  height: 40px;
  width: 170px;
  font-size: 20px;
  border-radius: 7px;
}

.ccontacts {
  display: flex;
  flex-direction: column;
}

.ccontacts a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}

.ccontacts span {
  font-size: 13px;
  color: gray;
}

.cccontacts {
  list-style: none;
  padding: 0;
}

.cccontacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.delivery-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #ffe4e8,
        #f3e5ff
    );

    border: 1px solid rgba(255, 100, 140, 0.2);

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.delivery-bonus i {
    font-size: 20px;
    color: #d63384;
    flex-shrink: 0;
}

.delivery-bonus strong {
    display: block;
    font-size: 15px;
    line-height: 1.4;
    color: #4a235a;
}

.insta-gradient {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae6 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px; 
    display: inline-block;
}

/*  Контакти 🔼  */

.md {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.mdd {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.mddd {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px;
  border-radius: 10px;
  min-width: 250px;
  z-index: 3001;
}

/* Опис сайту 🔽*/
.hero {
    width: 100%;

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

    gap: 40px;

    padding: 60px 20px;

  
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 30px;
    line-height: 1.1;

    color: #222;

    margin-bottom: 18px;
}

.hero-content p {
    font-size: 14px;
    line-height: 1.3;
white-space: pre-line;
    color: #555;

    margin-bottom: 27px;

    max-width: 600px;
}

.hero-button {
    display: inline-block;
    text-align: left;
    justify-content: left;
    padding: 14px 24px;

    background: #24c365;
    color: white;

    text-decoration: none;

    border-radius: 12px;

    transition: 0.2s;
}

.hero-button:hover {
    background: #2f6f4e;
}


@media (max-width: 900px) {

    .hero {
      flex-direction: column;

        padding: 40px 20px;
    }



}


.hero-slider {
    flex: 0 1 400px;
margin-right: auto;
    max-width: 520px;
    width: 80%;

    overflow: hidden;

    border-radius: 24px;

    position: relative;
}

.slides {
    display: flex;

    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;

    flex-shrink: 0;

    border-radius: 24px;

    object-fit: cover;
}

/* Опис сайту 🔼 */







