/* basic css*/

:root {
    --primary-color: #ED1D24;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --phara-color: #808080;
    --russo-one-font: "Russo One", sans-serif;
    --heebo-font: "Heebo", sans-serif;
    --rajdhani-font: "Rajdhani", sans-serif;
    --transition: .3s;
}

body {
    font-family: var(--heebo-font);
    color: var(--phara-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--russo-one-font);
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    font-family: var(--rajdhani-font);
}

a,
button,
input,
textarea,
img,
svg,
path {
    transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    padding-inline: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.container-xl {
    max-width: 1440px;
    padding-inline: 40px;
}

/* basic css */



/* reusable css start here */

.heading-xl,
.heading-lg,
.heading-md,
.heading-lg,
.heading-sm,
.heading-base {
    color: var(--white-color);
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    font-family: var(--russo-one-font);
}

.heading-xl {
    font-size: 72px;
}

.heading-lg {
    font-size: 46px;
}

.heading-md {
    font-size: 32px;
}

.heading-sm {
    font-size: 24px;
}

.heading-base {
    font-size: 18px;
}

.phara-lg,
.phara-base {
    font-weight: 300;
    line-height: 160%;
    color: var(--white-color);
}

.phara-lg {
    font-size: 18px;
}

.phara-base {
    font-size: 16px;
}

.sub-heading {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 23.2px;
    letter-spacing: 9.6px;
    text-transform: uppercase;
}

.title__block {
    position: relative;
}

.vertical__bar {
    width: 1px;
    background: rgba(190, 187, 191, 1);
    height: 70px;
}

.title__block h4.heading-md {
    color: var(--black-color);
    width: 50%;
    padding-right: 30px;
}

.title__block span.sub-heading {
    width: 50%;
    padding-left: 30px;
}

.theme__btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--primary-color);
    display: inline-flex;
    padding: 13px 23px 13px 40px;
    gap: 18px;
    align-items: center;
    border-radius: 2px;
    border: 1px solid transparent;
}

.theme__btn:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.theme__btn .arrow-right {
    font-size: 24px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.theme__btn:hover .arrow-right {
    transform: translateX(10px);
}

.theme__btn.transparent-bg {
    background-color: transparent;
    border-color: var(--white-color);
}

.theme__btn.transparent-bg:hover {
    border-color: var(--primary-color);
}

.section__title {
    margin-bottom: 19px;
}

/* reusable css end here */



/* header area start here */

header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    padding-block: 20px;
}

.header__navigation ul {
    display: flex;
    align-items: center;
    gap: 46px;
}

.header__navigation ul li a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
}

.header__navigation ul li a::after {
    position: absolute;
    content: '';
    background-color: var(--white-color);
    width: 100%;
    height: 2px;
    bottom: 5px;
    left: 0;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .6s;
}

.header__navigation ul li:hover a::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* header area end here */



/* hero area start here */

.hero__area {
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero__area .container {
    max-width: calc(1400px - 110px);
}

.hero__area::after {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 100%), rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-top: 40px;
}

.hero__text h1 {
    margin-bottom: 20px;
}

.hero__text span.sub-heading {
    display: block;
    margin-bottom: 18px;
}

.hero__text p {
    margin-bottom: 40px;
}


/* hero area end here */



/* upcoming event start here */

.upcoming__event {
    background: url('../img/event-bg.png') center center/cover no-repeat;
    padding-block: 70px 80px;
}


.upcoming__event__content .section__title h2 {
    max-width: 400px;
}

.upcoming__event__content .section__title .theme__btn {
    font-family: var(--russo-one-font);
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;
    padding: 12px 24px 12px 45px;
}

.upcoming__event__content .section__title {
    margin-bottom: 30px;
}

.upcoming__event__schedule h5 {
    margin-bottom: 8px;
}

.upcoming__event__schedule .input__field {
    background: var(--primary-color);
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 10px;
    height: 100%;
    padding: 4px;
    width: 213px;
    justify-content: start;
    margin-bottom: 8px;
}

.upcoming__event__schedule .input__field input {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    color: var(--white-color);
    width: 100%;
}

.upcoming__event__schedule .input__field input::placeholder {
    color: var(--white-color);
}

.upcoming__event__schedule {
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px);
    background: rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
    margin-top: 15px;
    width: 49%;
}

.upcoming__event__schedule .input__field input:focus {
    outline: 0;
    border-radius: 0;
}

.upcoming__event__schedule .input__field .calender__icon {
    flex-shrink: 0;
}

.event__location__left {
    gap: 10px;
    width: 40%;
}

.event__location__left address {
    color: var(--white-color);
    margin-bottom: 0;
}

.event__location__left .location-icon {
    flex-shrink: 0;
}

.location__next {
    background-color: var(--black-color);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location__next:hover {
    background-color: var(--primary-color);
}

/* upcoming event end here */



/* about race start here */

.about__race {
    background: url('../img/about-bg.jpg') center center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.grid__white__img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
}

.grid__white__img img {
    width: 100%;
    height: 100%;
}

.about__race::after {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 0) 71%);
    inset: 0;
}

.about__race__content {
    position: relative;
    z-index: 2;
}

.about__text {
    width: 38%;
}

.about__text h2.heading-lg {
    color: var(--black-color);
    margin-block: 11px 19px;
}

.about__text p {
    color: var(--phara-color);
}

.about__text a {
    display: flex;
    align-items: center;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    gap: 18px;
    margin-top: 42px;
}

.about__video {
    width: 50%;
    display: flex;
    justify-content: center;
}

/* about race end here */



/* competition area start here */

.competition__area {
    background: url('../img/competition-bg.jpg') center center/cover no-repeat;
    position: relative;
}

.competition__area::after {
    position: absolute;
    content: '';
    background: var(--black-color);
    inset: 0;
    opacity: 0.6;
}

.competition__content {
    position: relative;
    z-index: 2;
}

.competition__image {
    width: 51.4%;
}

.competition__image img {
    width: 100%;
}

.competition__text {
    width: 48.6%;
    align-self: center;
    padding-inline: 80px 60px;
}

.competition__info {
    max-width: 500px;
}

.competition__info h2.heading-lg {
    margin-block: 11px 19px;
}

.competition__info a {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    gap: 18px;
    margin-top: 42px;
}

/* competition area end here */



/* book area start here */

.book__area {
    background: url('../img/book-bg.png') center center/cover no-repeat;
    padding-block: 140px;
}

.book__area .grid__bar1 {
    opacity: .1;
    height: 450px;
}

.title__reverse.title__block span.sub-heading {
    padding-left: 0;
    padding-right: 30px;
    line-height: 160%;
}

.title__reverse.title__block h4.heading-md {
    padding-right: 0;
    padding-left: 30px;
    color: var(--white-color);
}

.book__content {
    position: relative;
    z-index: 2;
}

.book__article {
    color: #B3B3B3;
    max-width: 576px;
    margin-inline: auto;
    margin-top: 80px;
}

.book__flex {
    border: 1px solid var(--white-color);
    background: var(--white-color);
    max-width: 960px;
    margin-inline: auto;
    margin-block: 40px 70px;
    position: relative;
    padding: 32px;

}

.book__flex_style2 {
    border: 1px solid rgba(230, 230, 230, 1) !important;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.10) !important;
}

.book__amount {
    width: 50%;
    padding-right: 40px;
}

.book__date {
    width: 50%;
    border-left: 1px solid #E6E6E6;
    padding-left: 40px;
}

.book__amount__heading h2 {
    color: #333333;
    margin-bottom: 25px;
}

.book__single__amount {
    border: 1px solid rgba(240, 240, 240, 1);
    padding: 19px 16px;
    margin-bottom: 10px;
}

.book__amount__place {
    display: flex;
    align-items: center;
    gap: 5px;
}

.book__amount__place .decrease__value,
.book__amount__place .increase__value {
    color: #999999;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    font-size: 20px;
    padding: 0;
}

.book__amount__place .amount__value {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    width: 28px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book__single__left span {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0%;
}

.book__single__amount:last-child {
    margin: 0;
}

.book__single__left p {
    color: var(--phara-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0%;
}

.book__single__left div {
    color: var(--phara-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0%;
}

.book__submit .theme__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.book__content .theme__btn.transparent-bg {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.book__content .theme__btn.transparent-bg:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

.grid__bar__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 264px;
}

.grid__bar__bottom img {
    width: 100%;
    height: 100%;
}

/* book area end here */



/* galler slider start here */

.gallery__slider {
    padding-block: 70px 100px;
}

.grid__bar1 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 186px;
}

.grid__bar1 img {
    width: 100%;
    height: 100%;
}

.gallerySlider {
    width: 110%;
    overflow: hidden;
    margin-left: -5%;
    margin-block: 70px;
}

.gallery__slider__image img {
    width: 100%;
}

.gallerySlider .swiper-slide {
    height: unset;
}

.gallerySlider .swiper-slide .gallery__slider__image {
    height: 100%;
    display: flex;
    object-fit: cover;
}

/* galler slider end here */



/* sponsor area start here */

.sponsor__area {
    padding-block: 60px 40px;
    background-color: #000000;
}

.sponsor__flex {
    gap: 88px;
    margin-top: 20px;
}

/* sponsor area end here */



/* tradition area start here */

.tradition__area {
    padding-block: 70px 87px;
}

.tradition__area::after {
    position: absolute;
    content: '';
    background: #F3F3F3;
    height: 50%;
    width: 1px;
    left: 50%;
    bottom: 0;
}

.tradition__article__flex {
    padding-block: 70px;
}

.tradition__content {
    position: relative;
    z-index: 2;
}

.single__tradition__article article p {
    color: var(--phara-color);
}

.single__tradition__article {
    width: 50%;
    padding: 10px 15px 0 15px;
}

/* tradition area end here */



/* footer area start here */

footer {
    background-color: var(--black-color);
    padding-block: 22px;
}

.footer__terms ul {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.footer__credit p,
.footer__terms ul li a {
    color: var(--phara-color);
    font-size: 11px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0%;
    font-family: var(--heebo-font);
}

.footer__terms ul li a:hover {
    color: var(--primary-color);
}

/* footer area end here */






/* about us page start here */

.tradition__area.tradition__extra::after {
    display: none;
}

.tradition__extra .single__tradition__article:last-child {
    padding: 10px 15px 0 30px;
}

.tradition__extra .single__tradition__article {
    padding: 15px 30px 0px 0px;
}

.article__list ul li {
    color: var(--phara-color);
    list-style: disc;
}

.article__list ul {
    padding-left: 20px;
}

.tradition__extra .tradition__article__flex {
    padding-block: 70px 0;
}

.single__tradition__article article {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.about__block .title__block h4.heading-md {
    color: var(--black-color);
}

.article__wrapper {
    gap: 60px;
    margin-top: 40px;
}

.single__article__image {
    width: 34.1%;
}

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

.about__group .about__text {
    width: 39%;
}

.about__group .about__image {
    width: 53.4%;
}

.about__group .about__text h4 {
    color: var(--black-color);
    margin-bottom: 24px;
}

.about__group .about__text article {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__text article p strong {
    font-weight: 700;
    display: block;
    color: #666666;
}

.about__area.about__group {
    padding-block: 90px;
}

.artictle__verticle__bar {
    position: absolute;
    width: 1px;
    height: 145px;
    top: 70px;
    margin-inline: auto;
    background: #F3F3F3;
    right: 0;
    left: 0;
}

.single__tradition__article article p strong {
    font-weight: 700;
}

/* about us page end here */






/* news page start here */

.news__area {
    padding-block: 60px;
}

.hero__extra.hero__area {
    height: unset;
    padding-block: 251px 141px;
}

.news__area .container {
    max-width: calc(1400px - 110px);
}

.news__card__image img {
    width: 100%;
}

.news__caption__container {
    background-color: #262626;
    padding: 20px 24px;
}

.news__caption__link {
    flex-shrink: 0;
}

.news__caption__text a {
    margin-bottom: 8px;
    display: inline-flex;
}

.news__caption__text p {
    margin-bottom: 8px;
}

.news__caption__text span {
    color: #F8F8F8;
    font-size: 15px;
    font-weight: 300;
    line-height: 160%;
    letter-spacing: 0px;
}

.news__card__flex {
    row-gap: 30px;
}

.single__news__card {
    width: 48.8%;
}

.single__news__card figure {
    margin-bottom: 0;
    background: #262626;
    height: 100%;
}

/* news page end here */





/* dropdown css start here */

.header__navigation ul li .dropdown__nav {
    flex-direction: column;
    gap: 0;
    align-items: start;
    position: absolute;
    min-width: 200px;
    background-color: var(--white-color);
    top: 100%;
    transform: translateY(5px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    right: 0;
}

.header__navigation ul li:hover .down-arrow {
    transform: rotate(-180deg);
}

.header__navigation ul li:hover .dropdown__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header__navigation ul li .dropdown__nav li a {
    padding: 0px 10px;
    color: var(--black-color);
}

.header__navigation ul li .dropdown__nav li {
    width: 100%;
}

.header__navigation ul li .dropdown__nav li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.header__navigation ul li .dropdown__nav li a::after {
    display: none;
}

/* dropdown css end here */








/* offcanva css start here */

.offcanva__trigger {
    font-size: 30px;
    color: var(--white-color);
}

.offcanvas-body>ul>li>a {
    color: var(--black-color);
    display: flex;
    padding-block: 8px;
    border-bottom: 1px solid #e0e0e0;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.offcanvas-body>ul>li:hover a {
    padding-left: 20px;
}

.offcanvas-body>ul>li>a i {
    font-size: 20px;
}

.offcanvas-body #collapseExample {
    padding: 10px 20px;
}

.offcanvas-body #collapseExample li a {
    font-size: 14px;
    color: var(--black-color);
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.offcanvas-body #collapseExample li a:hover {
    padding-left: 15px;
}

.offcanvas-body>ul>li>a .down-arrow {
    transition: var(--transition);
}

.offcanvas-body>ul>li>a[aria-expanded="true"] .down-arrow {
    transform: rotate(-180deg);
}

/* offcanva css end here */




/* custom calender */

.static__calender .calendar {
    background: var(--bg);
    width: 360px;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

.static__calender .header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    gap: 35px;
}

.static__calender .nav-btn {
    user-select: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 24px;
    color: #BDBDBD;
}

.static__calender .label {
    font-weight: 700;
    font-family: var(--russo-one-font);
    color: #333333;
    font-size: 18px;
    line-height: 100%;
}

.static__calender .weekdays,
.static__calender .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.static__calender .weekdays div {
    font-size: 14px;
    color: #3D2F4B;
    font-weight: 600;
    line-height: 100%;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.static__calender .days div {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: #333333;
    font-weight: 700;
    height: 48px;
}.static__calender .today:hover {
	color: var(--white-color) !important;
}
.static__calender.calendar .empty:hover {
	background: transparent;
}
.static__calender .days div:hover {
	background: var(--primary-color);
	color: var(--white-color);
}
.static__calender .empty {
    cursor: default;
    background: transparent
}

.static__calender .selected {
    background: var(--primary-color) !important;
    color: #fff !important
}

.static__calender .today {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.static__calender .disabled {
    opacity: 0.45
}

.hero__area {
    position: relative;
    overflow: hidden;
}

.hero__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    object-position: center; 
    z-index: 0; 
    display: block;
}

html {
    height: 100%;

}

body.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.main_content {
    flex: 1; /* pushes footer to bottom */
}

/* ========== BLOG LIST GRID ========== */
.news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;   /* changed */
    row-gap: 40px;
    column-gap: 2.4%;              /* add this for perfect spacing */
    margin-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
}

/* 2 columns (48.8% width like screenshot) */
.news-card {
    width: 48.8%;
    background: #262626;
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

/* ========== IMAGE ========== */
.news-card__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* ========== CONTENT BOX ========== */
.news-card__content {
    background: #262626;
    padding: 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* top row */
.news-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card__category {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-card__date {
    color: #a0a0a0;
    font-size: 13px;
}

/* ========== TITLE ========== */
.news-card__title {
    color: #ffffff;
    font-size: 18px;
    font-family: var(--russo-one-font);
    text-transform: uppercase;
    line-height: 130%;
    margin-top: 8px;
    display: block;
}

/* ========== DESCRIPTION ========== */
.news-card__desc {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 160%;
    margin-top: 6px;
}

/* ========== ARROW BUTTON ========== */
.news-card__arrow {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.news-card__arrow svg path {
    transition: 0.3s;
}

.news-card__arrow a:hover svg path {
    fill: var(--primary-color);
}

@media (max-width: 992px) {
    .news-list {
        justify-content: center !important;
    }

    .news-card {
        width: 90%; /* optional — keeps cards nicely centered */
        max-width: 500px;
    }
}

/* * {
    border: 1px solid rgba(255, 0, 0, 0.5);
} */

/* ========== EVENTS / TICKETS LIST ========== */

.events-area {
    padding-block: 80px 100px;
    background: #FFFFFF;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* single event card */
.event-ticket {
    background: #181818;
    color: #ffffff;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

/* top row: title + buttons */
.event-ticket__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* title */
.event-ticket__title {
    font-family: var(--russo-one-font);
    font-size: 28px;
    line-height: 130%;
    text-transform: uppercase;
}

/* date + location row */
.event-ticket__meta {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* red date badge */
.event-ticket__date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.event-ticket__date i {
    font-size: 18px;
}

/* location text */
.event-ticket__location {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #B3B3B3;
    font-size: 14px;
}

.event-ticket__location-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* buttons on the right */
.event-ticket__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.event-btn {
    font-family: var(--rajdhani-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 11px 32px;
    border-radius: 2px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.event-btn--primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.event-btn:hover {
    background: #ffffff;
    color: #000000;
}

.event-btn--primary:hover {
    background: transparent;
    color: var(--primary-color);
}

/* quantity + per-event total row */
.event-ticket__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #333333;
    padding-top: 18px;
}

.event-qty-label {
    color: #B3B3B3;
    font-size: 13px;
    margin-bottom: 4px;
}

/* reuse your number style */
.basket-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basket-item .item-minus,
.basket-item .item-plus {
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 1px solid #444444;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.basket-item input[type="number"] {
    width: 60px;
    background: #202020;
    border: 1px solid #444444;
    color: #ffffff;
    text-align: center;
    padding: 4px 6px;
}

/* per event total */
.event-ticket__subtotal {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

/* total box at bottom */
.events-total-box {
    margin-top: 40px;
    text-align: center;
}

.events-total-box-inner {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #E0E0E0;
    padding: 16px 28px;
}

.events-total-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 1px;
}

.events-total-value {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

/* responsive */
@media (max-width: 992px) {
    .event-ticket {
        padding: 24px 20px;
    }

    .event-ticket__title {
        font-size: 22px;
    }

    .event-ticket__actions {
        width: 100%;
        justify-content: flex-start;
    }
}

.submit_order_btn {
    text-align: center;
    align-self: center;
}
/* EVENT IMAGE GRID */
.event-gallery {
    padding-block: 70px;
    background: #ffffff;
}

.event-gallery__title {
    text-align: center;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 32px;
}

/* 3x4 grid */
.event-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* tiles */
.event-grid__item {
    background: #d9d9d9;
    aspect-ratio: 1 / 1;          /* perfect squares */
    overflow: hidden;
}

.event-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* highlighted tile (blue border) */
.event-grid__item--active {
    box-sizing: border-box;
    border: 4px solid #0084ff;
}

/* responsive: full-width tiles on small screens */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .event-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.gallery-card {
    position: relative;
    display: block;
    overflow: hidden;
}

.gallery-card__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 100%);
}

.gallery-card__overlay span {
    color: #fff;
    font-family: var(--russo-one-font);
    font-size: 16px;
    text-transform: uppercase;
}
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.hero__area.hero__extra {
    max-height: 550px;           
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero__area.hero__extra .hero__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        
    object-position: center;
}

.hero__extra .hero__content {
    position: relative;
    width: 100%;
    display: flex;
    text-align: center;
}

.hero-banner__subheading,
.hero-banner__title {
    text-align: left;
}

.row {
    --bs-gutter-x: 0;
}

html {
    overflow-y: scroll;
}

.static__calender .days .available {
    cursor: pointer;
    background: #f9f9f9;
}

.static__calender .days .available:hover {
    background: var(--primary-color);
    color: var(--white-color);
}



.reserved-separator {
    border-top: 2px solid #000000;
}

/* ---------------------------------------------------------- */
/* SHOPPING CART POPUP (Motokros Theme)                      */
/* ---------------------------------------------------------- */

#shopping-cart-popup {
    height: calc(100vh - 50px);
    width: 420px;
    background: var(--white-color);
    position: fixed;
    right: 0;
    top: 25px;
    margin-right: 20px;
    z-index: 999999;
    padding-top: 20px;
    display: none;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
    overflow: hidden;
}

@media(max-width: 480px){
    #shopping-cart-popup {
        width: 96%;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Scroll area */
#shopping-cart-popup .f-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

#shopping-cart-popup .f-container::-webkit-scrollbar {
    width: 6px;
}
#shopping-cart-popup .f-container::-webkit-scrollbar-track {
    background: #eee;
}
#shopping-cart-popup .f-container::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

/* ---------------------------------------------------------- */
/* HEADER                                                     */
/* ---------------------------------------------------------- */

#shopping-cart-popup .header-container {
    padding: 18px 24px 26px;
    background: var(--white-color);
    border-bottom: 1px solid #E6E6E6;
    position: sticky;
    top: 0;
    z-index: 5;
}

#shopping-cart-popup .header-container-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

#shopping-cart-popup .title {
    font-family: var(--russo-one-font);
    font-size: 18px;
    color: var(--black-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#shopping-cart-popup button.close-shopping-cart-popup-btn svg {
    width: 18px;
    color: var(--black-color);
    cursor: pointer;
    transition: 0.2s;
}

.close-shopping-cart-popup-btn {
    background: transparent;
    border: none;
    padding: 0;
}
#shopping-cart-popup button.close-shopping-cart-popup-btn:hover svg {
    color: var(--primary-color);
}

/* ---------------------------------------------------------- */
/* NOTICE + CART ITEMS                                        */
/* ---------------------------------------------------------- */


.cart-free-shipping-target p {
    color: var(--black-color);
    font-size: 15px;
    margin-bottom: 6px;
}

.cart-free-shipping-target span {
    width: 100%;
    display: block;
    background: #e5e5e5;
    border-radius: 50px;
    overflow: hidden;
    height: 6px;
}

.cart-free-shipping-target .progress-line {
    background: var(--primary-color);
    height: 6px;
}
.cart-free-shipping-target .full-line {
    background: var(--primary-color);
    width: 100%;
}

/* ---------------------------------------------------------- */
/* ARTICLE LIST                                                */
/* ---------------------------------------------------------- */

.articles-in-cart-list {
    padding: 20px;
    display: grid;
    row-gap: 25px;
}

.empty-cart-text {
    text-align: center;
    font-family: var(--russo-one-font);
    font-size: 22px;
    color: var(--black-color);
    opacity: 0.7;
}

/* ---------------------------------------------------------- */
/* SINGLE CART ITEM                                            */
/* ---------------------------------------------------------- */

.article-box {
    border: 1px solid #D9D9D9;
    background: #FFFFFF;
    overflow: hidden;
}

/* top grid (image + info) */
.article-box .top-container {
    display: grid;
    grid-template-columns: 100px auto;
    column-gap: 16px;
}

/* IMAGE */
.article-box .p-img {
    width: 100%;
    height: 100px;
    background: #F3F3F3;
}
.article-box .p-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* TITLE */
.article-box .p-title {
    font-family: var(--russo-one-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color-color);
    margin-bottom: 6px;
}

/* SIZE */
.article-box .p-size {
    font-size: 14px;
    color: #6D6D6D;
    margin-bottom: 8px;
}

/* PRICE GROUP */
.p-price-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.p-price-group .price {
    font-size: 18px;
    color: var(--black-color);
}
.p-price-group.discount .price span {
    color: var(--primary-color);
}
.p-price-group .old-price span {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

/* ---------------------------------------------------------- */
/* BOTTOM ROW: remove + qty controls                           */
/* ---------------------------------------------------------- */

.article-box .bottom-container {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    align-items: center;
}

/* REMOVE BUTTON */
.remove-from-basket-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--rajdhani-font);
    font-size: 14px;
    color: var(--black-color);
    cursor: pointer;
    transition: 0.2s;
}
.remove-from-basket-btn:hover {
    color: var(--primary-color);
}
.remove-from-basket-btn svg {
    width: 16px;
}

/* QUANTITY BOX */
.article-qty-in-basket {
    width: 50px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: white;
    background: transparent;
}

.increase-article-qty-in-basket,
.decrease-article-qty-in-basket {
    width: 36px;
    height: 36px;
    border: 1px solid #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.25s;
}
.increase-article-qty-in-basket:hover,
.decrease-article-qty-in-basket:hover {
    border-color: var(--primary-color);
    background: #FFF6F6;
}

/* ---------------------------------------------------------- */
/* FOOTER: TOTAL + CHECKOUT                                   */
/* ---------------------------------------------------------- */

.footer-container {
    padding: 20px;
    background: #FFFFFF;
    position: sticky;
    bottom: 0;
    border-top: 1px solid #eee;
}

.subtotal-container {
    display: flex;
    justify-content: space-between;
    font-family: var(--russo-one-font);
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--black-color);
}



.continue-shopping {
    text-align: center;
    margin-top: 14px;
    color: var(--phara-color);
    font-size: 14px;
    cursor: pointer;
}
.continue-shopping:hover {
    color: var(--primary-color);
}
/* ================================
   CART LIST – MOTOKROS STYLE
   ================================ */

.articles-in-cart-list {
    padding: 20px;
    display: grid;
    row-gap: 25px;
}

/* Empty basket text */
.articles-in-cart-list .empty-cart-text {
    font-family: var(--russo-one-font);
    font-size: 18px;
    text-align: center;
}


/* ================================
   CART ITEM BOX
   ================================ */

.article-box {
    background: #262626;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* ================================
   TOP AREA (IMAGE + TITLE)
   ================================ */

.article-box .top-container {
    display: grid;
    grid-template-columns: 110px auto;
    column-gap: 20px;
    align-items: start;
}

/* Image */
.article-box .p-img {
    width: 100%;
    height: 110px;
    overflow: hidden;
}


/* Title */
.article-box .p-title {
    font-family: var(--russo-one-font);
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.article-box .p-title a {
    color: var(--primary-color);
    font-family: var(--russo-one-font);
}

.article-box .p-title a:hover {
    color: var(--primary-color);
}

/* Size / Date */
.article-box .p-size {
    color: white;
    font-family: var(--russo-one-font);
    font-size: 14px;
    margin-bottom: 10px;
}


/* ================================
   PRICE DISPLAY
   ================================ */

.article-box .p-price-group .price {
    font-family: var(--russo-one-font);
    font-size: 14px;
    color: #fff;
    display: inline-flex;
    gap: 4px;
}

.article-box .p-price-group.discount .price span {
    color: var(--primary-color);
}

.article-box .p-price-group .old-price {
    margin-left: 6px;
}

.article-box .p-price-group .old-price span {
    color: #888;
    text-decoration: line-through;
}


/* ================================
   BOTTOM AREA (REMOVE BUTTON)
   ================================ */

.article-box .bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-box .remove-from-basket-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    cursor: pointer;
    transition: 0.25s;
    font-family: var(--russo-one-font);
    font-size: 12px;
}

.article-box .remove-from-basket-btn svg {
    width: 14px;
    height: 14px;
}

.article-box .remove-from-basket-btn:hover {
    color: var(--primary-color);
}

.shopping-cart-submit {
    width: 100%;
    text-align: center;
    align-self: center;
    justify-content: center;
}

.book__single__amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book__single__left {
    flex: 1;         /* takes all leftover space */
}

.book__single__price {
    width: 80px;     /* FIXED WIDTH → perfect alignment */
    text-align: center;
    font-weight: 600;
}

.book__single__right {
    width: 100px;    /* also fixed so + / - always align */
    text-align: right;
}

.show-shopping-cart-btn svg {
    max-width: 24px     !important;
}
.show-shopping-cart-btn::after {
    display: none;
}
.close-shopping-cart-popup-btn {
    position: relative;
    width: 20px;  /* adjust if needed */
    height: 20px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: currentColor; /* keeps inherited color */
}

.x-close-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.x-close-icon::before,
.x-close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;         /* line length */
    height: 2px;         /* line thickness */
    background-color: currentColor;
    transform-origin: center;
}

.x-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.x-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.p-info-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.p-info-left {
    flex: 1;
}

.p-info-right {
    min-width: 40px;
    text-align: right;
    display: flex;
    align-items: flex-start;
}

.book_area_style2 {
    background-image: none !important;
    padding-block: 50px;
}

.show-shopping-cart-btn {
    position: relative;
    display: inline-block;
}

.NumOfItems {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef3d3d;     /* red badge */
    color: white;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;

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

    pointer-events: none;
    z-index: 10;
}

.NumOfItems p {
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {
    .NumOfItems {
        top: 5px;
        left: 15px;

    }
}

.pswp--open .gallery-grid a img {
    visibility: hidden !important;
}


.ticket-price-row {
    display: flex;
    justify-content: flex-end; /* pushes everything to the right */
    align-items: center;
    gap: 10px; /* space between prices */
}

.ticket-price-new {
    font-weight: 700;
    font-size: 17px;
    color: var(--primary-color);
}

.ticket-price-old {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 14px;
    margin-left: 10px;
}

.ticket-price-normal {
    font-weight: 600;
    margin-top: 4px;
}

.ticket-subtotal {
    margin-top: 6px;
     display: flex;
    justify-content: flex-end; /* pushes everything to the right */
}

.ticket-subtotal-label {
    color: #B3B3B3;
    font-size: 16px;
}

@media (max-width: 406px) {
    .ticket-price-row {
        justify-content: flex-start; /* CENTER on small screens */
    }
    .ticket-subtotal {
        justify-content: flex-start; /* CENTER on small screens */
    }
}

/* PROFILE FORM — BOOK STYLE (Option A1) */

/* Smaller BOOK-style input fields */
.profile__section .profile__input {
    width: 100%;
    height: 42px;                    /* smaller than 50px */
    padding: 0 14px;
    background: #ffffff;
    border: 1px solid #DADADA;
    font-size: 15px;
    color: #000;
    transition: 0.25s;
}

.profile__section .profile__input:hover {
    border-color: #C7C7C7;
}

.profile__section .profile__input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.input__field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px; /* slightly tighter */
}

.profile__section .profile__label {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

/* PROFILE MENU — MOTOCROSS STYLE */
.profile_content_tabs {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid #E6E6E6;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.profile_content_tabs .tab_item a {
    font-family: var(--russo-one-font);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 15px;
    color: #888;
    position: relative;
    padding-bottom: 8px;
    transition: 0.3s;
}

/* hover underline */
.profile_content_tabs .tab_item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0%;
    background: var(--primary-color);
    transition: 0.3s;
}

.profile_content_tabs .tab_item a:hover {
    color: var(--primary-color);
}

.profile_content_tabs .tab_item a:hover::after {
    width: 100%;
}

/* ACTIVE TAB */
.profile_content_tabs .active_tab {
    color: var(--black-color) !important;
    font-weight: 700;
}

.profile_content_tabs .active_tab::after {
    width: 100% !important;
    background: var(--primary-color);
}
/* 2-column grid for profile form */
.profile__row {
    width: 60%;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

/* each field behaves as a flex item */
.profile__row .input__field {
    flex: 1;
    min-width: 160px; /* prevents ugly squishing */
}

/* full-width fields */
.profile__row.full-width .input__field {
    flex-basis: 100%;
}

/* responsive – stack on small screens */
@media (max-width: 768px) {
    .profile__row {
        flex-direction: column;
    }
}
/* Ensure the dropdown is hidden by default */
.iti__dropdown-content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* When intl-tel-input sets the "show" state */
.iti__dropdown-content:not(.iti__hide) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Make sure the container doesn't force dropdown open due to overflow */
.iti {
    position: relative !important;
    overflow: visible !important;
}

/* Dropdown panel styling (makes sure it stays over other fields) */
.iti__dropdown-content {
    position: absolute !important;
    z-index: 9999 !important;
    background: #fff;
    max-height: 300px;
}

/* FIELD-LEVEL ERROR MESSAGES */
.validation-error-message {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #E80000; /* bright motocross red */
    display: none;  /* shown via JS */
}

/* When JS sets error text, show automatically */
.validation-error-message.active {
    display: block;
}

/* Add red border for invalid fields */
.profile__input.error {
    border-color: #E80000 !important;
}

/* SUCCESS + ERROR BOXES (top or bottom of the form) */
.error-message-container,
.success-message-container {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    display: none; /* shown via JS */
    animation: fadeIn 0.35s ease;
}

/* ERROR BOX */
.error-message-container {
    background: #FFE6E6;
    color: #B60000;
    border-left: 4px solid #E80000;
}

/* SUCCESS BOX */
.success-message-container {
    background: #E2F7E9;
    color: #0A7A2E;
    border-left: 4px solid #00C851;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.iti {
    display: flex !important;
    flex-direction: row !important;
}

.iti--allow-dropdown .iti__country-container {
    padding-right: 5px !important;
}
/* MOBILE VERSION OF TABS */
@media (max-width: 992px) {

    .profile_content_tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 24px;
        padding-bottom: 12px;
        margin-bottom: 24px;
        border-bottom: 2px solid #E6E6E6;

        /* Hide scrollbar but allow scrolling */
        -ms-overflow-style: none; 
        scrollbar-width: none;
    }

    .profile_content_tabs::-webkit-scrollbar {
        display: none;
    }

    .profile_content_tabs .tab_item a {
        font-family: var(--russo-one-font);
        text-transform: uppercase;
        letter-spacing: 1.4px;
        font-size: 14px;
        color: #777;
        padding: 6px 0;
        position: relative;
        display: inline-block;
    }

    /* Bottom underline animation */
    .profile_content_tabs .tab_item a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background: var(--primary-color);
        transition: 0.25s;
    }

    .profile_content_tabs .tab_item a:hover {
        color: var(--primary-color);
    }

    .profile_content_tabs .tab_item a:hover::after {
        width: 100%;
    }

    /* ACTIVE MOBILE TAB */
    .profile_content_tabs .active_tab {
        color: var(--black-color) !important;
        font-weight: 700;
    }

    .profile_content_tabs .active_tab::after {
        width: 100% !important;
        background: var(--primary-color);
    }
}

/* ────────────────────────────────
   PASSWORD PAGE — INPUT FIELDS
───────────────────────────────── */
.change-password .input input {
    width: 50%;
    height: 42px;                          /* compact motocross style */
    padding: 0 14px;
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 4px;
    font-size: 15px;
    color: #000;
    transition: border-color .25s ease;
}

.change-password .input input:hover {
    border-color: #C7C7C7;
}

.change-password .input input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* LABELS */
.change-password label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #141215;
    margin-bottom: 6px;
}

/* FIELD SPACING */
.change-password .input {
    margin-bottom: 20px;
}


/* ────────────────────────────────
   FIELD-LEVEL ERROR MESSAGES
───────────────────────────────── */
.validation-error-message {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #E80000;
    display: none;
}

.validation-error-message.active {
    display: block;
}

/* add red border when JS marks input invalid */
.change-password .input input.error {
    border-color: #E80000 !important;
}


/* ────────────────────────────────
   GLOBAL SUCCESS & ERROR BOXES
───────────────────────────────── */
.error-message-container,
.success-message-container {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    animation: fadeIn .3s ease;
}

/* error box */
.error-message-container {
    background: #FFE6E6;
    color: #B60000;
    border-left: 4px solid #E80000;
}

/* success box */
.success-message-container {
    background: #E2F7E9;
    color: #0A7A2E;
    border-left: 4px solid #00C851;
}

/* fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ─────────────────────────────────────────────
   ORDER HISTORY — EMPTY STATE
────────────────────────────────────────────── */
.Empty_orders {
    text-align: center;
    padding: 60px 20px;
}

.Empty_orders p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.Empty_orders a {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.Empty_orders a:hover {
    text-decoration: underline;
}


/* ─────────────────────────────────────────────
   ORDER CARD — COLLAPSED HEADER
────────────────────────────────────────────── */
.order_container {
    border: 1px solid #DCDCDC;
    margin-bottom: 18px;
    background: #FFFFFF;
}

.order_line {
    cursor: pointer;
    padding: 16px 20px;
    transition: background .25s ease;
}

.order_line:hover {
    background: #F5F5F5;
}

/* ----- grid layout inside collapsed header ----- */
.order_line_grid_layout {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 20px;
}


/* ─────────────────────────────────────────────
   ORDER IMAGES (THUMB STRIP)
────────────────────────────────────────────── */
.order_line .image {
    display: flex;
    align-items: center;
    position: relative;
}

.order_line .image span img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
}

.order_line .image span.image-opacity-40 img {
    opacity: .4;
}

/* “+3 more” label */
.plus-images-dashboard {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--russo-one-font);
    font-size: 18px;
    background: #FFFFFF;
    padding: 2px 6px;
    border-radius: 3px;
}


/* ─────────────────────────────────────────────
   ORDER HEADER TEXT
────────────────────────────────────────────── */
.order_line_grid_layout .center_text p {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

/* price area */
.order_line_grid_layout .price span.price_val {
    font-size: 17px;
    font-weight: 800;
    color: #000;
}

/* expand arrow */
.order_line_grid_layout .price i {
    font-size: 18px;
    transition: transform .25s ease;
}

.order_container.open .order_line_grid_layout .price i {
    transform: rotate(180deg);
}


/* ─────────────────────────────────────────────
   ORDER DETAILS (EXPANDED)
────────────────────────────────────────────── */
.order_container_details {
    display: none;
    padding: 22px;
    background: #FAFAFA;
    border-top: 1px solid #DCDCDC;
}

/* visible when toggled */
.order_container.open .order_container_details {
    display: block;
}


/* ─────────────────────────────────────────────
   DELIVERY & PAYMENT BLOCK
────────────────────────────────────────────── */
.delivery-payment-info {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.delivery-payment-info h3 {
    font-family: var(--russo-one-font);
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
}

.delivery-payment-info p {
    color: #444;
    font-size: 14px;
}


/* ─────────────────────────────────────────────
   ORDERED PRODUCT LIST
────────────────────────────────────────────── */
.all_ordered_products h3 {
    font-family: var(--russo-one-font);
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.all_ordered_products .order-item {
    border: 1px solid #DCDCDC;
    background: #FFFFFF;
}

.order-list-inside {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    padding: 18px;
    gap: 20px;
}

.order-list-inside img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
}

/* product title */
.order-list-inside .item_title {
    font-family: var(--russo-one-font);
    font-size: 15px;
    color: #000;
    margin-bottom: 12px;
}

/* attributes */
.p-qty span,
.p-color span,
.p-size span {
    font-size: 13px;
    color: #222;
}

.p-qty .font-normal,
.p-color .font-normal,
.p-size .font-normal {
    color: #777;
}


/* price column */
.order-list-inside .sc span {
    font-family: var(--russo-one-font);
    font-size: 15px;
    font-weight: 800;
    color: #000;
}


/* ─────────────────────────────────────────────
   ORDER TOTALS
────────────────────────────────────────────── */
.order_prices {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
}

.order-prices-container {
    padding: 20px;
    min-width: 350px;
}

.order-prices-container .grid {
    padding: 8px 0;
    text-align: right;
}

.order-prices-container .grid:last-child {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid #000 !important;
}

.order-prices-container p {
    font-size: 14px;
}

.order-prices-container .font-extrabold {
    font-weight: 700;
}

/* Optional: Add hover effect */
.order-prices-container .grid:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
}

/* Make the total row stand out more */
.order-prices-container .grid:last-child p {
    font-size: 16px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-list-inside {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

    
    .order-prices-container {
        padding: 15px;
        min-width: 150px;
    }
    
    .order-prices-container p {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .order_line_grid_layout {
        grid-template-columns: 1fr auto;
    }
 }
/* ─────────────────────────────────────────────
   DASHBOARD SECTION TITLES
────────────────────────────────────────────── */
.h2_mbs {
    font-family: var(--russo-one-font);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: .5px;
    text-transform: uppercase;
}


/* ─────────────────────────────────────────────
   WRAPPER BOXES (white rectangles)
────────────────────────────────────────────── */
.rectangle_address_book {
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 35px;
}


/* ─────────────────────────────────────────────
   PROFILE TWO-COLUMN GRID
────────────────────────────────────────────── */
.grid_profile_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .grid_profile_content {
        grid-template-columns: 1fr;
    }
}


/* ─────────────────────────────────────────────
   PROFILE INFO BLOCKS (left + right boxes)
────────────────────────────────────────────── */
.white_name_container {
    display: flex;
    align-items: center;
    padding: 18px;
    background: #F8F8F8;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
}

.profile_data_image img {
    width: 46px;
    height: 46px;
    margin-right: 18px;
}

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

.profile_data_text .text_name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.profile_data_text span:last-child {
    font-size: 14px;
    color: #676767;
}


/* ─────────────────────────────────────────────
   BUTTONS INSIDE DASHBOARD BOXES
────────────────────────────────────────────── */

.btn_my_profile {
    display: flex;
    justify-content: center;   
    align-items: center;      
    width: 100%;
    gap: 24px;
}

/* ─────────────────────────────────────────────
   EMPTY ADDRESS BOOK TEXT (if used later)
────────────────────────────────────────────── */
.rectangle_address_book p {
    font-size: 15px;
    color: #333;
    margin-bottom: 16px;
}


/* ─────────────────────────────────────────────
   GENERAL DASHBOARD SPACING
────────────────────────────────────────────── */
.myProfile_content_dashboard,
.preferences_content_dashboard,
.address_content_dashboard {
    margin-bottom: 40px;
}

/* ─────────────────────────────
   WRAPPER LAYOUT (FLEX)
──────────────────────────────*/
.login-register-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center;
}

/* Divider line between blocks */
.login-register-divider {
    width: 1px;
    background: #D4D4D4;
    min-height: 400px;
}

/* Responsive */
@media (max-width: 900px) {
    .login-register-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .login-register-divider {
        display: none;
    }
}

/* ─────────────────────────────
   TITLES
──────────────────────────────*/
.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ─────────────────────────────
   PROFILE INPUT STYLING
──────────────────────────────*/
.profile__input {
    width: 100%;
    height: 48px;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.25s ease;
}

.profile__input:focus {
    border-color: #000;
    outline: none;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.input-row {
    margin-bottom: 24px;
}

/* ─────────────────────────────
   BUTTONS (BLACK THEME)
──────────────────────────────*/
/* Forgot password */
.forgot-password-btn {
    margin-top: 10px;
    font-size: 13px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 0;
}

/* ─────────────────────────────
   REGISTER SECTION
──────────────────────────────*/
.register-content p {
    max-width: 380px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.error-container .errors {
    background: #FFE6E6;
    padding: 12px;
    border-left: 4px solid red;
    margin-bottom: 16px;
    display: none;
}

.login-container,
.register-container {
    width: 100%;
    max-width: 420px;
}
/* ───────────────────────────────────────────
   FORGOT PASSWORD LAYOUT
──────────────────────────────────────────── */

.forgot-password-grid-template {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    padding-top: 20px;
}

.forgot-password-container {
    max-width: 480px;
}

.empty-container {
    flex: 1;
}

/* MOBILE */
@media (max-width: 900px) {
    .forgot-password-grid-template {
        flex-direction: column;
        gap: 40px;
    }
    .empty-container {
        display: none;
    }
}

/* ───────────────────────────────────────────
   TITLES & TEXT
──────────────────────────────────────────── */

.forgot-password-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.forgot-password-text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #444;
}

/* ───────────────────────────────────────────
   INPUT FIELD (MATCHES PROFILE INPUT)
──────────────────────────────────────────── */

.forgotten_password-form input[type="text"] {
    width: 100%;
    height: 48px;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 15px;
    background: #fff;
    transition: border-color .25s ease;
}

.forgotten_password-form input[type="text"]:focus {
    border-color: #000;
    outline: none;
}

/* Label */
.forgotten_password-form label {
    margin-bottom: 6px;
    display: block;
    font-size: 15px;
    font-weight: 600;
}

/* ───────────────────────────────────────────
   BUTTON GROUP
──────────────────────────────────────────── */

.buttons-container {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

/* Cancel button */

.cancel-forgotten-password:hover {
    background: #DDD;
}


/* ───────────────────────────────────────────
   MESSAGES
──────────────────────────────────────────── */

.errors {
    background: #FFE6E6;
    color: #B60000;
    border-left: 4px solid #E80000;
    padding: 12px 14px;
    margin-top: 15px;
    margin-bottom: 10px;
    display: none;
    border-radius: 4px;
}

.success-message {
    background: #E8FFE8;
    color: #0B7A0B;
    border-left: 4px solid #34C534;
    padding: 12px 14px;
    margin-top: 15px;
    margin-bottom: 10px;
    display: none;
    border-radius: 4px;
}

/* -------------------------------------------------------
   PAGE LAYOUT
------------------------------------------------------- */

.login-page {
    width: 100%;
    margin: 40px auto;
}

.login-register-grid-template {
    display: flex;
    gap: 60px;
    position: relative;
    align-items: center;
    justify-content: center;
}

/* Vertical divider between columns */
.vl {
    width: 1px;
    background: #d9d9d9;
    min-height: 500px;
}

/* Top horizontal divider under title */
.login-page-after-title-devider {
    display: none; /* used in other layouts, hidden here */
}

/* Mobile behavior */
@media (max-width: 768px) {
    .login-register-grid-template {
        flex-direction: column;
        gap: 30px;
    }

    .vl {
        display: none;
    }
}

/* -------------------------------------------------------
   SECTION HEADERS
------------------------------------------------------- */

.form-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* intro paragraph */
.register-content p,
.login-container p {
    font-size: 15px;
    line-height: 1.45;
    max-width: 420px;
    margin-bottom: 20px;
}

/* -------------------------------------------------------
   INPUT FIELDS (same as profile edit)
------------------------------------------------------- */

.profile-input-group {
    width: 100%;
    margin-bottom: 24px;
}

.profile-input-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 6px;
}

.profile-input-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #CFCFCF;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.25s 
ease;
}

.profile-input-group input:hover {
    border-color: #222;
}

.profile-input-group input:focus {
    border-width: 2px;
    border-color: #000;
}

/* Phone plugin wrapper */
.phoneNumberSelection input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #000;
    background: #fff;
}

/* -------------------------------------------------------
   GRID FOR INPUTS (2-column layout)
------------------------------------------------------- */

.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:0px 12px;
}

.profile-form-grid .full-width {
    grid-column: 1 / 3;
}

@media (max-width: 768px) {
    .profile-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-grid .full-width {
        grid-column: 1 / 2;
    }
}

/* -------------------------------------------------------
   ERROR + VALIDATION MESSAGES
------------------------------------------------------- */

.error-container .errors,
.validation-error-message {
    margin-top: 6px;
    font-size: 14px;
    color: #c80000;
}

/* -------------------------------------------------------
   PRIVACY CHECKBOX AREA
------------------------------------------------------- */

.privacy-box {
    margin: 32px 0;
}

/* Your existing checkbox wrapper */
.containerss {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
    cursor: pointer;
}

/* -------------------------------------------------------
   MOBILE DIVIDER "OR"
------------------------------------------------------- */

.mobile_devider {
    display: none;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.mobile_devider hr {
    border: none;
    border-top: 1px solid #dcdcdc;
    width: 35%;
    display: inline-block;
    margin: 0 10px;
}

.mobile_devider span {
    font-size: 14px;
    color: #333;
}

@media (max-width: 768px) {
    .mobile_devider {
        display: block;
    }
}

/* -------------------------------------------------------
   LEFT & RIGHT COLUMN BLOCKS
------------------------------------------------------- */

.register-container,
.login-container {
    flex: 1;
    max-width: 500px;
}

.registration-form,
.login-form {
    width: 100%;
    max-width: 500px;
}


.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -------------------------------------------------------
   PAGE WRAPPER
------------------------------------------------------- */

.forgot-password-page {
    width: 100%;
    padding: 20px 0;
}

.forgot-password-grid-template {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.forgot-password-container {
    flex: 1;
    max-width: 500px;
}

.empty-container {
    flex: 1;
}

/* Mobile layout */
@media (max-width: 768px) {
    .forgot-password-grid-template {
        flex-direction: column;
        gap: 30px;
    }
    .empty-container {
        display: none;
    }
}

/* -------------------------------------------------------
   TITLES & TEXT
------------------------------------------------------- */

.forgot-password-container h3 {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
}

/* -------------------------------------------------------
   INPUT FIELD STYLING (same as profile-edit)
------------------------------------------------------- */

.set-forgotten-password-form label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.set-forgotten-password-form input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid #CFCFCF;
    border-radius: 4px;

    font-size: 15px;
    color: #000;
    outline: none;
    box-sizing: border-box;
}

.set-forgotten-password-form input:hover {
    border-color: #222;
}

.set-forgotten-password-form input:focus {
    border-width: 2px;
    border-color: #000;
}

/* spacing under each input-block */
.md\\:grid > div,
.set-forgotten-password-form .profile-input-group {
    margin-bottom: 24px;
}

/* -------------------------------------------------------
   VALIDATION & ERROR MESSAGES
------------------------------------------------------- */

.validation-error-message,
.errors {
    margin-top: 6px;
    font-size: 14px;
    color: #c80000;
}

.success-message {
    margin-top: 6px;
    font-size: 14px;
    color: #0a7d00;
}

/* -------------------------------------------------------
   BUTTONS CONTAINER (but NOT styling the button)
------------------------------------------------------- */

.buttons-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.fa-angle-down {
    transition: transform 0.25s ease;
}

.fa-angle-down.rotated {
    transform: rotate(180deg);
}

.order_container_details {
    display: none;
}

/* Wrap selectize to behave like a normal input in profile rows */
.input__field .selectize-control {
    width: 100% !important;
    min-height: 42px;              /* same as .profile__input */
}

/* MAIN SELECTIZE INPUT – NO BORDER, SAME SIZE AS profile__input */
.input__field .selectize-control.single .selectize-input {
    border: none !important;       /* remove all borders */
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    min-height: 42px !important;   /* match .profile__input height */
    height: 42px !important;
    padding: 0 16px !important;    /* same horizontal padding as inputs */
    display: flex;
    align-items: center;
    font-size: 16px !important;
}

/* Remove blue outline on focus */
.input__field .selectize-control.single .selectize-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* The inner item text inside the selectized input */
.input__field .selectize-input > .item {
    padding: 0 !important;
    line-height: 1 !important;
    vertical-align: middle;
}

/* ZIP + DISTRICT selectized fake inputs – no border, inherit size */
#zip_code-selectized,
#district-selectized {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
}

/* Optional: dropdown styling (keeps items nice, no outer border) */
.selectize-dropdown {
    border: none !important;          /* remove border if you want ZERO borders */
    border-radius: 0 !important;
    margin-top: 4px !important;
    background: #fff !important;
}

.selectize-dropdown-content .option {
    padding: 8px 12px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    color: #000 !important;
}

/* Selected option in dropdown */
.selectize-dropdown .selected {
    background-color: #f0f0f0 !important;
    color: #000 !important;
}

.download_tickets_btn {
    padding: 7px 13px 7px 20px;
    font-size: 11px;
    margin-bottom: 15px;
}

.ticket-download-error-container {
    display: none;
    color: var(--primary-color);
    padding: 10px 0px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-size: 14px;
}