/* =========================================================
   FONTS
========================================================= */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   GLOBAL
========================================================= */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #222;
    padding-top: 145px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================================
   COLORS
========================================================= */
:root { 
    --top-bg: linear-gradient(to bottom, #3372DF, #1565C0);
    --header-bg: #181818;
    --text-muted: #6B7280;

    --panel-sale-header-bg: #0E8679;
    --panel-sale-header-text: #ffffff;
}

/* =========================================================
   HEADER WRAPPER
========================================================= */
.header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 300;
}

/* =========================================================
   TOP BAR
========================================================= */
.header-bar {
    background: var(--top-bg);
    width: 100%;
    color: #F9FAFB;
    padding: 10px 20px;
}

.header-bar .header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left img {
    height: 40px;
}

.header-help {
    font-size: 1rem;
    font-weight: 500;
    color: #F9FAFB;
}

/* =========================================================
   SEARCHBAR
========================================================= */
.searchbar {
    flex: 1;
    padding: 0 20px;
    max-width: 50%;
}

.search-form {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.25);
}

.md-field {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 1.2rem;
}

.md-field input {
    width: 100%;
    padding: 10px 10px 10px 34px;
    border-radius: 6px;
    border: 1px solid #D1D5DB;
    background: #F9FAFB;
    font-size: 0.95rem;
}

.md-field input:focus {
    border-color: var(--top-bg);
    background: #ffffff;
    outline: none;
}

.md-field label {
    position: absolute;
    left: 34px;
    top: 10px;
    font-size: 0.8rem;
    color: #9CA3AF;
    pointer-events: none;
    transition: 0.2s ease;
}

.md-field input:not(:placeholder-shown) + label,
.md-field input:focus + label {
    top: -6px;
    font-size: 0.65rem;
    color: var(--top-bg);
}

.search-btn {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000;
    border-radius: 6px;
    background: linear-gradient(180deg, #F2AB0F 0%, #D89200 100%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: .2s ease;
}

.search-btn:hover {
    background: linear-gradient(180deg, #FFC53A 0%, #E6A300 100%);
    transform: translateY(-1px);
}

/* =========================================================
   CONTAINER
========================================================= */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* =========================================================
   INTRO SECTION
========================================================= */
.intro {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.12);
}

.text-center {
    text-align: center;
}

.intro-flex {
    display: flex;
    gap: 28px;
    margin-top: 20px;
}

.intro-img img {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
}

.intro-text ul {
    padding-left: 20px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .intro-flex {
        flex-direction: column;
    }
}

/* =========================================================
   SALE INFO PANELS
========================================================= */
.sale-info {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15,23,42,0.12);
    border: 1px solid #E5E7EB;
}

.sale-header {
    background: var(--panel-sale-header-bg);
    color: var(--panel-sale-header-text);
    padding: 16px 22px;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.sale-info p,
.sale-info ul,
.sale-info li,
.sale-info h4 {
    padding: 0 22px;
}

.sale-info p {
    margin: 16px 0;
    color: #444;
    line-height: 1.55;
}

.sale-info ul {
    padding-left: 40px;
    margin: 10px 0 20px 0;
}

.sale-info li {
    margin-bottom: 6px;
}

.sale-info h4 {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #222;
}

/* =========================================================
   MOBILE — search bar pod logo i full width
========================================================= */
@media (max-width: 768px) {

    .header-bar .header-container {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .searchbar {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .search-form {
        width: 100%;
    }

    .md-field {
        width: 100%;
    }
}

.holiday {
  width: 400px;
  height: 267px;
  margin: 20px auto;
  padding: 20px;
  box-sizing: border-box;

  background-image: url("../images/src/holiday.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
}


.holiday p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.holiday strong {
  font-weight: 700;
}
