:root{
  /* colors */
  --bg: #A50A3C;
  --bg-img: url("../images/september/bg_new.png");
  --text: #ffffff;
  --accent-yellow: #FFEE00;
  --cta-text: #151515;
  --timer-bg: #0D0D0D;

  --h: 100px;
  --maxw: 1160px;
  --gap: 20px;
  --radius: 12px;
  --chip: 28px;
  --fz-title: 32px;
  --fz-offer: 20px;
  --fz-timer: 15px;
}

body{ padding-top: var(--h); }

.wrap_banner_info_head{
  position: fixed; inset: 0 auto auto 0;
  width: 100%; z-index: 999;
}

#banner_info_head.banner_info_head{
  max-width: var(--maxw);
  margin: 0 auto;
  width: auto!important;
}

/* ===== Banner base ===== */
.banner_info_head.banner_august2{
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 5px;
  height: var(--h);
  width: 100%; max-width: var(--maxw);
  cursor: pointer; z-index: 500;
  color: var(--text);
  background: var(--bg) var(--bg-img) left center / cover no-repeat;
}

/* ===== Inner layout ===== */
.banner_august2 #banner_info_head_conteiner{
  display: flex; align-items: center; gap: var(--gap);
  width: 100%; height: 100%;
  color: var(--text);
	justify-content: space-between;
}

/* ===== Title with heart-chip ===== */
.banner_august2 .field_01{
  display: inline-flex; align-items: center; gap: 14px;
  font: 900 var(--fz-title)/1.05 "Mulish", system-ui, sans-serif;
  color: var(--text);
  text-transform: uppercase;
  background: none;
	padding-left: 85px;
  -webkit-text-fill-color: unset;
}
.banner_august2 .field_01::before {
	content: "";
	width: 100px;
	height: 100%;
	left: 0px;
	background-image: url("../images/september/leaf.png");
	top: 0;
	display: block;
	position: absolute;
	background-size: contain;
}
.banner_august2 .field_01 span{
  font: inherit; color: inherit;
  background: none; -webkit-text-fill-color: unset;
}
/* yellow square + heart */
.banner_august2 .field_02::before{
  content:""; width: var(--chip); height: var(--chip); min-width: var(--chip);
  border-radius: 6px; background: var(--accent-yellow); display: inline-block;
	position: absolute;
	left: -10px;
	top: calc((100% - 28px) / 2);
}
.banner_august2 .field_02::after{
  content:"♥";
  font-weight: 800; font-size: 16px; color: #1b1b1b;
	position: absolute;
	left: -1px;
	top: calc((100% - 17px) / 2);
}

/* ===== Offer (3 lines) ===== */
.banner_august2 .field_02{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
	text-align: center;
	background: none;
	font: 900 var(--fz-offer) / 1.05 "Mulish", system-ui, sans-serif;
	color: var(--accent-yellow);
	text-transform: uppercase;
	position: relative;
	width: fit-content;
	padding: 14px 30px;
	border: 1px solid #fff;
	border-radius: 15px;
}
.banner_august2 .field_02 span{
  font: inherit; color: var(--accent-yellow); text-transform: uppercase;
}
.banner_august2 .field_02 b{ color: #fff; }

/* ===== Timer ===== */
.banner_august2 .field_timer{
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  text-align: left; padding-right: 0;
  flex: 0 0 auto;
}
.banner_august2 #banner_info_head_timer_container_intro{
  font: 700 14px/1.1 "Mulish", system-ui, sans-serif;
  color: var(--text); opacity: .9; margin-bottom: 6px; width: auto;
}
.banner_august2 #banner_info_head_timer{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px;
  background: var(--timer-bg); color: var(--accent-yellow);
  font: 800 var(--fz-timer)/1.1 "Mulish", system-ui, sans-serif;
  letter-spacing: 0; font-variant-numeric: tabular-nums; width: auto; height: auto;
}
.banner_august2 #banner_info_head_timer span{ color: var(--accent-yellow); min-width: auto; }

/* ===== CTA ===== */
.banner_august2 #banner_info_head_btn{
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 22px; min-width: 240px; height: 50px;
  background: var(--accent-yellow); color: var(--cta-text);
  border: 0; border-radius: var(--radius);
  font: 900 16px/1.1 "Mulish", system-ui, sans-serif; text-transform: uppercase;
  box-shadow: none; transition: transform .12s ease, box-shadow .12s ease;
}
.banner_august2 #banner_info_head_btn:hover{
  transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* ===== Close button ===== */
.banner_info_head_close{
  position: absolute; top: 8px; right: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%; background: transparent; padding: 0;
  cursor: pointer; transition: opacity .2s ease; z-index: 5;
}
.banner_info_head_close:hover{ opacity: .85; }

/* decorative */
#dopRight, #dopLeft{ display:none; }

/* =========================
   Responsive
   ========================= */

/* <=1199: немного ужимаем левый паддинг */
@media (max-width:1199px){
  .banner_info_head.banner_august2{ padding-left: 90px; }
	.banner_august2 .field_01 {
		font-size: 24px;
		padding-left: 15px;
	}
	.banner_august2 .field_02 {
		font-size: 15.4px;
	}
}

/* <=1100: уменьшаем типографику */
@media (max-width:1100px){
  .banner_august2 #banner_info_head_conteiner{ gap: 18px; }
  .banner_august2 .field_02,
  .banner_august2 .field_02 span{ font-size: 18px; }
}

/* <=990: ещё чуть левее фон */
@media (max-width:1035px){
  .banner_info_head.banner_august2{ padding-left: 60px; }
	.banner_august2 #banner_info_head_btn {
		display: none;
	}
	.banner_august2 .field_01 {
		padding-left: 40px;
	}
}

/* <=939: компактная шапка */
@media (max-width:939px){
  body{ padding-top: 70px; }
  #banner_info_head.banner_info_head{ height: 70px; }
  .banner_info_head.banner_august2{ height: 70px; padding-left: 30px; }
  .banner_august2 .field_01{ font-size: 20px; }
  .banner_august2 #banner_info_head_timer_container_intro{ font-size: 10px; margin-bottom: 3px; }
  .banner_august2 #banner_info_head_timer{ font-size: 12px; padding: 6px 10px; }
	.banner_august2 .field_01::before {
    width: 70px;
	}
	.banner_august2 .field_02, .banner_august2 .field_02 span {
		font-size: 13px;
	}
	.banner_august2 .field_02 {
    padding: 10px 20px;
    border-radius: 10px;
	}
	.banner_august2 .field_01 {
		padding-left: 53px;
	}
}



/* <=700: внутренние отступы */
@media (max-width:700px){
  .banner_info_head.banner_august2{ padding: 0 12px 0 20px; }
}

/* <=639: высота/фон */
@media (max-width:639px){
  body{ padding-top: 80px; }
  #banner_info_head.banner_info_head{ height: 80px; }
  .banner_info_head.banner_august2{ height: 80px; padding-left: 10px; background-position: center; }
	.banner_august2 .field_01 {
		font-size: 16px;
		top: 10px;
		position: absolute;
	}
	.banner_august2 .field_01::before {
		width: 60px;
		background-repeat: no-repeat;
		height: 60px;
	}
	.banner_august2 .field_timer {
		position: absolute;
		left: 45px;
		top: 50px;
		transform: scale(0.75);
	}
  .banner_august2 .field_02 {
    margin-left: auto;
  }
	.banner_august2 .field_01 {
		padding-left: 65px;
    left: -25px;
	}
}
