*{
    margin:0;
    padding:0;
}
:root{
    --body:#F8F9FE;
    --primary-1: #F42C22;
    --primary-2: #3792FB;
    --text-color:#6B7280;
    --heading-text: #244650;
    --white-text:#fff;
    --black-text: #000;
    --border-color: #EEEEEE;
}
body{
    box-sizing:border-box;
    font-family: "Inter", sans-serif;
    background-color:var(--white-text);

}
h1,h2,h3,h4,h5,h6,p,a,label,ul,li{
    margin: 0;
}
h1{
    font-family: "Roboto", sans-serif;
}
h2{
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25em;
    letter-spacing: 0.2px;
    color: var(--primary-2);
}
ul{
    list-style:none;
    padding-left:0;
    margin:0;
}
a {
    color: var(--text-color);
    text-decoration: none;
}
img{
    width:100%;
}

body{
    background-color:var(--body);
}
p{
    margin: 0;
}



/*----------dashboard CSS start----------*/

.sidebar {
   width: 256px;
    background: var(--white-text);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 20px 20px;
    overflow: scroll;
    scrollbar-width: none;
    gap: 88px;
}

.logo {
    padding: 0 20px 32px 20px;
    border-bottom: 1px solid #EEEFF2;
}

.main-container {
    width: calc(100% - 256px);
    margin-left: auto;
}

.language-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.language-select select{
    padding: 16px;
    background: #F8F9FE;
    border-radius: 6px;
    border: none;
    color: var(--text-color);
}

.language-select select:focus{
    border: none;
    box-shadow: none;
}

.language-select label {
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-text);
}


.menu-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item{
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-color);
    transition: all 0.5s ease;
    background-color: transparent;
}

.menu-item:hover{
    color: var(--white-text);
    background-color: var(--primary-1);
}

.menu-item:hover img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.menu-item.active{
    color: var(--white-text);
    background-color: var(--primary-1);
}

.menu-item.active img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.menu-item img{
    width: 20px;
    height: 20px;
}

.body-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
    background-color: #CBD5E1;
    width: 40px;
    height: 24px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label .ball {
    background-color: var(--white-text);
    border: 1px solid #CBD5E1;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s 
linear;
}

.checkbox:checked + .checkbox-label .ball {
    transform: translateX(18px);
}


.menu-item .left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.light-dark-mode{
    justify-content: space-between;
}

.user-img img{
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
}

.user-info:hover img{
    filter: none;
}

.info-data h4{
    font-weight: 700;
    font-size: 14px;
    color: var(--heading-text);
    text-transform: capitalize;
    margin-bottom: 0;
}

.info-data span{
    font-size: 12px;
    color: #71839B;
    text-transform: capitalize;
}

.user-info:hover h4{
    color: var(--white-text);
}

.user-info:hover span{
    color: var(--white-text);
}

.header {
    padding: 20px 24px;
    background-color: var(--white-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: calc(100% - 256px);
    top: 0;
    z-index: 99;
}

.header h1 {
    font-size: 24px;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 0;
}

.header-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-bar .search-box{
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap:12px;
    padding: 12px 32px 12px 16px;
    border-radius: 12px;
    width: 375px;
}
.header-bar .search-box i{
    color: #64748B;
    font-size: 16px;
}

.header-bar .search-box input::placeholder{
    color: #64748B;
    font-size: 14px;
}

.header-bar .search-box  input{
    border: none;
    font-size: 14px;
    color: var(--black-text);
    box-sizing: border-box;
    width: 100%;
}

.notification{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.notification svg{
    width: 18px;
    height: 18px;
}

.header-bar .search-box  input:focus{
    border: none;
    box-shadow: none;
    outline: none  !important;
}

.header-bar .search-box  input:focus-visible{
    border: none;
    box-shadow: none;
    outline: none  !important;
}

.header-bar .search-box svg{
    width: 20px;
    height: 20px;
}

.header-bar .search-box svg path{
    fill: #64748B;
}
.header-bar .user-info{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    cursor: pointer;

}
.header-bar .user-info .user-avatar{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
}
.header-bar .user-info .user-avatar img{
    border-radius: 50%;
    object-fit: cover;
}
.header-bar .user-info .user-details{
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: start;
  
}
.header-bar .user-info .detail-wrap{
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-bar .user-info .detail-wrap .user-details .name{
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    color: #0F172A;
}
.header-bar .user-info .detail-wrap .user-details .role{
    color: #64748B;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
}
.header-bar .user-info svg{
    color: #94A3B8;
    font-size: 12px;
}

 /* Rotate arrow on hover */
.header-bar .user-info:hover svg {
    transform: rotate(180deg);
}

 /* ===== DROPDOWN MENU ===== */
.user-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    background: var(--white-text);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(15, 23, 42, 0.08);
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 99;
}

.user-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.user-dropdown ul li a {
    display: block;
    padding: 10px 16px;
    color: var(--heading-text);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.user-dropdown ul li a:hover {
    background: #f8fafc;
    color: var(--primary-2);
}

.user-dropdown ul li.logout a {
    color: var(--primary-1);
    font-weight: 600;
}

/* Show dropdown on hover */
.user-info:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.dot{
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #E63946;
    border: 1px solid var(--white-text);
    position: absolute;
    top: 10px;
    left: 20px;
}


h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25em;
    letter-spacing: 0.2px;
    color: var(--primary-2);
}

.sub_text {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25em;
    letter-spacing: 0.2px;
    color: var(--text-color);
}

.campaign-tag {
    display: inline-block;
    background-color: rgb(244 44 34 / 8%);
    color: #f44336;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 15px;
    border-radius: 32px;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 20px;
}

.preview-header h2{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
}


/* steps */
.body-container {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 90px;
}
.page_main_head{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sub_text{
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25em;
    letter-spacing: 0.2px;
    color: var(--text-color);
}
.steps_status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: var(--white-text);
    border-radius: 24px;
    position: relative;
    padding: 32px 36px;
    height: 120px;
    box-sizing: border-box;
}
.step_count {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 3px;
}
.step_count div {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    /* text-align: center; */
    letter-spacing: 1px;
    color: var(--text-color);
}
.step_count span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px;
    width: 30px;
    height: 30px;
    background: var(--white-text);
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.step_count.active span {
    border: 1.5px solid var(--primary-1);
}
.step_count.active span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
    background: var(--primary-1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.step_content{
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    background: var(--white-text);
    border-radius: 24px;
}
.step_head{
    display: flex;
    flex-direction: column;
    gap: 8px;
}



 
.steps_status::before{
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 39%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
  border-radius: 2px;
}
 

.steps_status::after{
  content: "";
  position: absolute;
  left: 48px;
  top: 39%;
  height: 2px;
  background: var(--primary-2);
  z-index: 1;
  border-radius: 2px;
  right: 48px;
  transition: right 0.28s ease, width 0.28s ease;
}
 

.step_count{
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  pointer-events: auto;
  width: auto;
}
 

.steps_status .step_count:nth-child(1){
  left: 48px;
  align-items: flex-start;
}
.steps_status .step_count:nth-child(2){
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
}
.steps_status .step_count:nth-child(3){
  right: 48px;
  align-items: flex-end;
}
 

.step_count span{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white-text);
  border: 1.5px solid var(--border-color);
  position: relative;
  z-index: 3; 
}
 

.step_count div{
  font-size: 14px;
  color: var(--text-color);
  z-index: 3;
}
 

.step_count.completed span{
  background: var(--primary-2);
  border-color: var(--primary-2);
  color: #fff;
}
.step_count.completed span::after{
  content: "✔";
  color: #fff;
  font-size: 14px;
}
 

.step_count.active span{
  border-color: var(--primary-1);
}
.step_count.active span::after{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-1);
  border-radius: 50%;
  z-index: 4;
}
 
/* progress widths for current active step:
   add corresponding class (step-1 / step-2 / step-3) to .steps_status element
*/
.steps_status:has(.step_count:nth-child(1).active)::after,
.steps_status:has(.step_count:nth-child(1).completed)::after {
  width: 0 !important;
}
 
/* if second step is active/completed -> expand from left inset to center */
.steps_status:has(.step_count:nth-child(2).active)::after,
.steps_status:has(.step_count:nth-child(2).completed)::after {
  /* make the blue bar reach the center of the container */
  /* left is 48px; center is 50% - so width = calc(50% - 48px) */
  width: calc(50% - 48px) !important;
}
 
/* if third step active/completed -> expand to right inset (full progress) */
.steps_status:has(.step_count:nth-child(3).active)::after,
.steps_status:has(.step_count:nth-child(3).completed)::after {
  width: calc(100% - 96px) !important; /* full width: container - leftInset - rightInset (48+48) */
}


.step_head h4{
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: var(--primary-1);
}
.step_head h3{
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--heading-text);
}

.btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #d0d7e2;
    background-color: #fff;
    color: #007bff;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f2f7ff;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0066e4;
}

.btn i {
    font-size: 14px;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step_buttons .btn{
    font-size: 14px;
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--primary-2);
    border: 1px solid var(--primary-2);
}

.step_buttons .btn img {
    width: 20px;
    height: 20px;
}

.step_buttons .btn.btn-primary{
    background-color: #3792FB;
    border: 1px solid transparent;
    color: var(--white-text);
}

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}
button {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.btn-back {
    background: #e5e7eb;
}
.btn-next {
    background: #2563eb;
    color: var(--white-text);
}

.preview-content{
    display: block;
    background: transparent;
    padding: 0;
}
.preview-content .preview-item{
    background-color: var(--white-text);
    border-radius: 24px;
    padding: 24px;
    height: 100%;
}

.preview-content .preview-center-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.preview-content .preview-center-item .preview-image{
    width: 55%;
}

.preview-content .preview-center-item img{
    border-radius: 24px;
    width: 100%;
}


.toggle-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.toggle-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    background-color: #fff;
    padding: 16px 24px;
    min-width: 180px;
}

.toggle-box label {
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;

}

.preview-content .row .col-lg-3:first-child{
    padding-left: 0;
}

.preview-content .row .col-lg-3:last-child{
    padding-right: 0;
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: inset 0 0 0 0.47px #191A1D;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 0px;
    bottom: 0px;
    transition: 0.4s;
    border-radius: 50%;
    background: linear-gradient(90deg, #484E56 0%, #3B4048 100%);
    box-shadow: inset 0 0 0 0.47px #191A1D;
}

input:checked + .slider {
    background-color: #f44336; 
    box-shadow: none;
}

input:checked + .slider:before {
    transform: translateX(16px);
    background: linear-gradient(90deg, #CCCCCC 0%, #C9C9C9 100%);
    box-shadow: inset 0 0 0 0.47px var(--primary-1);
}

.switch input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.product-section .select-productBox{
    padding: 24px;
    background-color: var(--white-text);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap:12px;

 
}
.select-productBox .title{
    color: #0B0B0B;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #F9F9F9;
}
.select-productBox .product-card{
    display: flex;
    padding: 14px 12px;
    background-color: var(--white-text);
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.select-productBox .product-card .remove-prouduct{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FEEFEE;
    display: flex;
    align-items: center;
    justify-content: center;

 
}
.select-productBox .product-card .remove-prouduct svg{
    color: var(--primary-1);
    font-size: 12px;
}  

.product-info .product-category{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--heading-text);
}

.product-info .product-name{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-color);
}

.product-info .product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.edit-icon {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #FEEFEE;
    display: flex;
    justify-content: center;
    align-items: center;
}


.edit-icon svg{
    width: 16px;
    height: 16px;
}

.edit-icon svg path{
    fill: var(--primary-1);
}

.select-productBox {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.all-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.update-button {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 22px;
    background: rgb(55 146 251 / 16%);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.update-button:hover{
    background-color: var(--primary-2);
}

.update-button:hover a{
    color: var(--white-text);
}

.update-button a{
    color: var(--primary-2);
}

.product-card-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* checked state — background color changes */
.checkbox:checked + .checkbox-label {
  background: linear-gradient(90deg, #191A1D 0%, #373C42 100%);
}

/* move the ball when checked */
.checkbox:checked + .checkbox-label .ball {
  transform: translateX(20px);
}

/* background */
.color-picker-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
 
#bgColorInput {
    flex: 1;
    padding: 20px 44px 20px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    outline: none;
}
 
#bgColorInput::placeholder {
  color: #aaa;
}
 
/* Hidden real color input */
#bgColorPicker {
  position: absolute;
  right: 10px;
  opacity: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
 
/* Custom gradient color wheel icon */
.color-wheel-icon {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(
    red, yellow, lime, cyan, blue, magenta, red
  );
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}


/* 
dashboard */
.campaign_type {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 1fr);
}
.campaign_type_radio{
    display: block;
    width: 100%;
    margin: 0;
}
.campaign_type_radio input {
  display: none;
}

.radio_btn {
    padding: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.campaign_type_radio input:checked + .radio_btn {
  border: 1px solid var(--primary-1);
}
.radio_btn .hobbies_icon {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
}
.radio_btn img{
  display:block;
  width:100%;
  height: 188px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  
}
.radio_btn .hobbies_icon span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    position: relative;
    transition: all 0.4s ease-in-out;
}

.radio_btn .hobbies_icon h3 {
    color: var(--heading-text);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    width: calc(100% - 38px);
    margin: 0;
}
.campaign_type_radio input:checked + .radio_btn  span {
    border: 2px solid var(--primary-1);
}
.campaign_type_radio .radio_btn span:after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--primary-1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.campaign_type_radio input:checked + .radio_btn span:after {
    opacity: 1;
}

.step_form_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.step_form_group label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.2px;
    color: var(--heading-text);
}
.step_form_group input,.step_form_group select {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    outline: 0;
}
.step_form_row {
    display: flex;
    gap: 50px;
}
.action_btn {
    display: flex;
    justify-content: space-between;
}
.action_btn button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    gap: 10px;
    border: 1px solid var(--primary-2);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-2);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.2px;
    transition: all 0.5s ease;
}
.action_btn .btn_next {
    background: var(--primary-2);
    color: var(--white-text);
}

.action_btn button:hover{
    background-color: var(--primary-2);
    color: var(--white-text);
}

.action_btn button.btn_next:hover{
    background-color: transparent;
    color: var(--primary-2);
}



/* create campaign */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: 100%;
    
}



.product-grid .product-card {
    background-color: var(--white-text);
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 1px solid transparent;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.product-card .product-card-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-grid .product-card:hover {
    border: 1px solid var(--primary-1);
}

.product-card .product-img {
    height: 72px;
    width: 72px;
    border-radius: 8px;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-card .product-details .product-category {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.product-card .product-details .product-name {
    margin: 0;
    color: var(--heading-text);
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.product-card .product-details .product-weight {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card .product-details .product-weight img {
    width: 16px;
    height: 16px;
}

.product-card .product-details {

    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2px;
}

.product-card .product-details .info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: start;
}

.product-card .product-action svg {
    color: var(--primary-1);
    font-size: 20px;
    rotate: 320deg;
}

.product-section .select-productBox {
    padding: 24px;
    background-color: var(--white-text);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.select-productBox .title {
    color: #0B0B0B;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #F9F9F9;
}

.select-productBox .product-card {
    display: flex;
    padding: 14px 12px;
    background-color: var(--white-text);
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.select-productBox .product-card:hover{
      background-color: var(--body);
}

.select-productBox .product-card:nth-child(even){
   background-color: var(--body);
}


.select-productBox .product-card .remove-prouduct {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FEEFEE;
    display: flex;
    align-items: center;
    justify-content: center;

}

.select-productBox .product-card .remove-prouduct svg {
    color: var(--primary-1);
    font-size: 12px;
}


.select-productBox .item-input .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #FDCECB;
    border-radius: 4px;

}

.select-productBox .quantity-minus,
.quantity-plus {
    border-radius: 0 !important;
    margin: 0;
    background: var(--primary-1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content:center;
    padding: 2px;
    transition: all 0.5s ease;

}

.select-productBox .product-card .item{
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.select-productBox 
.quantity-minus,
.quantity-plus svg{
    color: var(--white-text);
    font-size: 10px;
}

.select-productBox .quantity-controls {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 20px;
}

.select-productBox .quantity-minus:hover,
.quantity__plus:hover {
    background: var(--black-text);
    color: var(--white-text);
}

.select-productBox .quantity-input {
    margin: 0;
  
    text-align: center;
    background: var(--white-text);
    border: none;
    box-sizing: border-box;
    width: 100%;
    color: var(--text-color);
}


.select-productBox .quantity-input:focus {
    outline: none;
}


.select-productBox .product-card-wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.product-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-text);
  padding: 12px 24px;
  border-radius: 24px;
  width: 100%;
}
 
.product-wrapper .results-dropdown {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-color);
  font-weight: 600;
}
 
.product-wrapper .results-dropdown select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #EEEFF2;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  background-color: var(--white-text);
  color: var(--heading-text);
  font-weight: 600;
}
 
.product-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.product-wrapper .pagination a,
.pagination span {
  text-decoration: none;
  color: var(--text-color);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.product-wrapper .pagination a:hover {
  background: #F42C2214;
}
 
.product-wrapper .pagination a.active {
  background: #F42C2214;
  color: var(--primary-1);
  font-weight: 600;
}
 
.product-wrapper .pagination .prev,
.pagination .next svg {
    color: var(--text-color);
    font-size: 14px;
}


/* popup */
  .price_modal .modal-title {
      font-weight: 600;
      color: #333;
    }
    .price_modal .modal-header{
      padding: 0 0 20px;
      border: 0;
    }
 
    .price_modal .modal-header .btn-close svg {
        color: #fff;
        font-size: 14px;
    }
    .price_modal .modal-header .btn-close {
        opacity: 0.5;
        background-image: unset;
        background-color: #b3b3b3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        width: 10px;
        height: 10px;
    }
 
    .price_modal .modal-header .btn-close:hover {
      opacity: 1;
    }
    .price_modal .modal-content{
      padding: 30px;
    }
    .price_modal .modal-body {
      padding: 20px 0;
      border-top: 1px solid #EDEEF1;
      border-bottom: 1px solid #EDEEF1;
    }
 
    .price_modal .modal-icon {
      width: 50px;
      height: 50px;
    }
 
    .price_modal .modal-subtitle {
      font-size: 14px;
      color: #666;
      margin-bottom: 30px;
    }
 
    .price_modal .form-group {
      margin-bottom: 20px;
    }
 
    .price_modal .form-label {
      font-weight: 500;
      color: #333;
      margin-bottom: 8px;
      font-size: 14px;
    }
 
    .price_modal .form-control {
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 10px 12px;
      font-size: 14px;
    }
 
    .price_modal .form-control:focus {
      border-color: #3792FB;
      box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
    }
 
    .price_modal .add-price-btn {
      display: flex;
      align-items: center;
      justify-content: end;
      gap: 8px;
      color: #3792FB;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      font-size: 14px;
      margin-top: 10px;
      width: 100%;
    }
    .price_modal .add-price-btn span{
        border: 1px solid #3792FB ;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
 
    .price_modal .add-price-btn:hover {
      color: #3792FB;
    }
 
    .price_modal .price-field-group {
      margin-bottom: 15px;
      position: relative;
    }
 
    .price_modal .price-field-group .remove-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      font-size: 18px;
      padding: 0;
      width: 15px;
      height: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .price_modal .price-field-group .remove-btn svg{
      font-size: 14px;
    }
 
    .price_modal .price-field-group .remove-btn:hover {
      color: #d32f2f;
    }
 
    .price_modal .modal-footer {
      border-top: none;
      padding: 30px 0 0;
      gap: 10px;
    }
    .price_modal .modal-footer .btn {
        font-size: 14px;
        padding: 12px 15px;
        margin: 0;
    }
    .price_modal .btn-cancel {
      border: 1px solid #3792FB;
      color: #3792FB;
      background: #fff;
      font-weight: 500;
    }
 
    .price_modal .btn-cancel:hover {
      border: 1px solid #3792FB;
    }
 
    .price_modal .btn-add-price {
      background: #3792FB;
      color: white;
      font-weight: 500;
      border: none;
    }
 
    .price_modal .btn-add-price:hover {
      background: #3792FB;
      color: white;
    }
 
    .price_modal .modal-content {
      border-radius: 8px;
      border: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }


    .step_buttons {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    
    .step-wrapper{
    padding: 24px;
    background-color: var(--white-text);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.step-wrapper .title{
    color: var(--primary-1);
    font-size: 16px;
    text-transform: uppercase;
}
.step-wrapper .product-description{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.step-wrapper .product-description .heading{
    color: var(--heading-text);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.step-wrapper .product-description .para{
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}
.product-search{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.product-search .search-box {
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px 12px 16px;
    border-radius: 12px;
    width: 96%;
}
.product-search .search-box i {
    color: #64748B;
    font-size: 16px;
}
.product-search input::placeholder {
    color: #64748B;
    font-size: 14px;
}
.product-search .search-box input {
    border: none;
    font-size: 14px;
    color: var(--black-text);
    box-sizing: border-box;
    width: 100%;
}
.product-search .search-box input:focus{
    outline: none;
}
.search-wrapper{
    display: flex;
    align-items: center;
    gap: 24px;
}
.search-wrapper .search-btn{
    background-color: var(--primary-2);
    border-radius: 8px;
    padding: 16px 24px;
    color: var(--white-text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    justify-content: center;
}
.search-wrapper .search-btn svg{
    color: var(--white-text);
    font-size: 12px;
}


/*add more*/

.add-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #007BFF;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}
 
.add-text {
    font-size: 14px;
    font-weight: normal;
    color: var(--primary-2);
}
 
.add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid #D4CBFD;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-2);
  transition: all 0.3s ease;
}
 
.add-more:hover {
  color: #0056b3;
}
 
.add-more:hover .add-icon {
  border-color: #0056b3;
  color: #0056b3;
}


/* template page */

.template-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    height: 100%;
}

.product-grid  .template-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.template-img img{
    width: 100%;
    border-radius: 16px;
}

.template-grid .product-details{
    width: 100%;
}

.template-item .product-details .info{
    gap: 2px;
}

.template-item .product-details .info p{
    font-size: 18px;
}

.template-item .product-details .info span{
    font-size: 14px;
    color: var(--text-color);
    letter-spacing: 0.2px;
}

.template-info{
    flex-direction: row;
    align-items: self-start;
    justify-content: space-between;
    display: flex;
    width: 100%;
}

.template_modal .modal-body .template-item{
    border: 1px solid #EEEEEE;
    border-radius: 16px;
}

.template_modal .modal-dialog{
    max-width: 900px;
}

.template-item .product-details .info.temp-info p{
    font-size: 14px;
}


.template_modal .template-img img {
    border-radius: 8px;
}

.template_modal  .product-grid .template-item {
    padding: 16px;
    width: 22.8%;
}

.template_modal .template-grid{
    display: flex;
    gap: 24px;
    height: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.template_modal .product-grid .template-item:hover {
    border: 1px solid var(--primary-2);
}

.template-content{
    padding: 0;
}

.download-left-section {
    padding: 24px 32px;
    background-color: var(--white-text);
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-header{
    margin-bottom: 20px;
}

.campaign-info-section{
    border-top: 1px solid #EDEEF1;
    border-bottom: 1px solid #EDEEF1;
}

.campaign-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
    border-bottom: 1px solid #EDEEF1;
}

.campaign-card:last-child{
    border-bottom: none;
}

.campaign-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-text);
}

.campaign-card span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.top-header-title{
    font-size: 20px;
    color: var(--heading-text);
    font-weight: 600;
}

.top-header-subtitle{
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.heading-ingo{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-right-section{
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.download-file {
    padding: 24px;
    border: 1px solid #eeeeee;
    border-radius: 16px;
}


.download-right-section .top-header {
    margin-bottom: 0;
}

.file-info{
    display: flex;
    align-items: start;
    gap: 24px;
    flex-direction: column;
}
.file-info .file-img{
    width: 32px;
    height: 32px;
}
.file-info .heading-info .top-header-title{
    font-size: 14px;
}
.file-name-info{
    display: flex;
    gap: 16px;
    align-items: center;
}
.file-info button{
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 14px;
    background-color: var(--primary-2);
    border: 1px solid var(--primary-2);
}
.file-info button:hover {
    background-color: var(--white-text);
    border: 1px solid var(--primary-2);
    color: var(--primary-2);
}
.right-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.download-btn{
    border: 1px solid var(--primary-2);
    background-color: var(--white-text) !important;
    color: var(--primary-2);
}
.download-btn:hover{
    background-color: var(--primary-2) !important;
    color: var(--white-text) !important;
    border: 1px solid var(--primary-2);
}
.price-con {
    padding: 8px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    cursor: pointer;
}
.price-img-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.price-img-content h4{
    font-size: 12px;
    font-weight: 400;
    color: var(--heading-text);
    line-height: 18px;
}
.price-img-content img{
    width: 40px;
}
.download-icon{
    width: 25px;
    height: 25px;
}
.download-icon img{
    width: 100%;
    height: auto;
}
.price-tag-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}
.price-tag-info > :last-child{
    grid-column: 1 / span 2;
    justify-self: center;
    width: 100%;
}
.price-grid{
    grid-template-columns: repeat(3, 1fr);
}
.printable-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.price-grid .template-item{
    border: 1px solid #eeeeee;
    padding: 12px 16px;
    border-radius: 16px;
}
.price-grid .template-item:hover{
    border: 1px solid var(--primary-2);
}
.price-con:hover{
    border: 1px solid var(--primary-2);
}
/* dropdown */
.custom-select {
  position: relative;
  display: inline-block;
  width: 150px;
}
.custom-select select {
  appearance: none;      
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--primary-1);  
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 44px 12px 20px;  
  width: 100%;
  cursor: pointer;
  outline: none;
    height: 56px;
}
.select-icon {
 position: absolute;
    right: 16px;
    top: 60%;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-select select option {
  background-color: #fff;           
  color: #000;                      
  padding: 10px;
  border: none;
}
.custom-select select:focus option {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.search-box svg path {
    fill: var(--text-color);
}
.campaign-search-box .custom-select select{
    background-color: var(--primary-2);
}


/* steps */
.step_count.completed.step_count:after {
    background: var(--primary-2);
    z-index: 1;
} 
 .step_count.completed span {
  border-color: var(--primary-2);
  background-color: var(--primary-2);
} 
/* toggle */
.header-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-info{
    display: none;
}
.download-campaign-image {
    width: 80%;
    margin: 0 auto;
}

.download-campaign-image img {
    border-radius: 34px;
}

.login_screen{
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.login_screen .main_logo{
    max-width: 290px;
    padding: 20px 20px 50px 20px;
}
.login_form_content h2 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
    color: var(--heading-text);
    flex: none;
    order: 0;
    flex-grow: 0;
}
.login_form_content {
    display: flex;
    flex-direction: column;
    padding: 60px 40px;
    gap: 16px;
    background: var(--white-text);
    box-shadow: 4px 4px 71px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    margin: 30px 30px 0;
}
.login_form{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.login_form label {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    color: var(--heading-text);
    margin-bottom: 8px;
}
.login_form input,.login_form select {
    width: 100%;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    outline: 0;
}
.login_form select {
    padding: 15px;
    background-color: var(--body);
}
.form_language_field,.form_pass_field{
    margin-bottom: 15px;
    position: relative;
}
.form_pass_field span{
    position: absolute;
    right: 20px;
    top: 50px;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
}
.pass_extra_field{
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.remember_field{
    display: flex;
    gap: 8px;
    align-items: center;
}
.remember_field input[type="checkbox"]{
    width: auto;
    width: 24px;
    height: 24px;
}
.remember_field label{
    margin-bottom: 0;
}
.forgot_pass{
    color: var(--primary-1);
}
.login_form button[type="submit"] {
    padding: 12px 24px;
    background: var(--primary-1);
    border-radius: 8px;
    color: var(--white-text);
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
}
.login_slider_container{
    background-color: var(--primary-2);
    border-radius: 32px;
    padding: 150px 48px 70px 48px;
    position: relative;
}
.login_slider_container h3 {
    width: 85%;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.32em;
    color: var(--white-text);
}
.slider_right_title{
    margin-left: auto;
    margin-top: 40px;
}
.slider_nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
#current{
    opacity: 0.5;
}
.slider_counter{
    color: var(--white-text);
    font-size: 16px;
}
.slider_btn{
    display: flex;
    gap: 12px;
}
.slider_btn .slick-prev,.slider_btn .slick-next {
    position: static;
    background: transparent;
    color: var(--text-color) !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transform: translate(0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    padding: 0;
}
.slider_btn .slick-prev::before,.slider_btn .slick-next:before{
    content: url(../images/slider-arrow.svg);
    opacity: 1;
    width: 35px;
}
.slider_btn .slick-prev::before{
    transform: rotate(180deg);
}
.login_shap img{
    position: absolute;
}

.login_shap1 {
    position: absolute;
    width: 158px;
    height: 158px;
    left: 37%;
    top: -71px;
    z-index: -1;
}
.login_shap2 {
    position: absolute;
    width: 130px;
    height: 130px;
    left: -10px;
    bottom: 40px;
    z-index:-1;
}
.login_shap3 {
    position: absolute;
    width: 245px;
    height: 245px;
    right: -45px;
    bottom: -45px;
    z-index: -1;
}
/*--------------------Responsive start--------------------*/

@media only screen and (max-width:1600px){
 
    
}

@media only screen and (min-width:1200px) and (max-width:1440px){
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .select-productBox .product-card{
        flex-direction: column;
    }
    .step_head {
        gap: 8px;
        margin-right: 8px;
    }
    .step_buttons {
        gap: 12px;
    }
    .step_buttons .btn{
        padding: 16px;
    }
    .select-productBox .title {
        font-size: 16px;
    }
    .template-grid{
        grid-template-columns: repeat(3, 1fr);
    }

}

@media only screen and (min-width:1200px) and (max-width:1300px){
    .toggle-container{
        flex-direction: column;
        width: 100%;
    }
    .toggle-box {
        width: 100%;
    }
    .login_screen .main_logo {
        padding: 20px 20px 40px 20px;
    }
    .login_form_content{
        padding:40px;
    }
    .login_form_content h2{
        font-size: 36px;
    }
    .login_slider_container h3{
        font-size: 28px;
        width: 88%;
    }
}




@media only screen and (min-width:992px) and (max-width:1199px){
    .campaign_type {
        grid-template-columns: repeat(3, 1fr);
    }
    .header-bar .search-box{
        width: 280px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step_content.template-content .row .col-lg-6{
        width: 100%;
    }
    .step_content.template-content .row .col-lg-6:first-child{
        margin-bottom: 24px;
    }
    .step-header {
        align-items: start;
        flex-direction: column;
        gap: 16px;
    }
    .template-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .template_modal .modal-dialog {
        max-width: 80%;
    }
    .template_modal .product-grid .template-item {
        width: 21.8%;
    }
    .download-campaign-image {
        width: 60%;
    }
    .login_screen .main_logo {
        padding: 20px 20px 40px 20px;
    }
    .login_form_content{
        padding:40px;
        margin:0 10px;
    }
    .login_form_content h2{
        font-size: 30px;
    }
    .login_form input, .login_form select{
        padding: 15px 20px;
    }
    .login_slider_container{
        padding: 140px 30px 50px 30px;
        height: 100%;
    }
    .login_slider_container h3{
        font-size: 24px;
        width: 90%;
    }
    
    
}

@media only screen and (max-width:1199px){
    .product-section .row .col-lg-9{
        width: 100%;
    }
    .product-section .row .col-lg-3{
        width: 100%;
        margin-top: 24px;
    }
    .step_content.template-content .row .col-lg-6{
        width: 100%;
    }
    .step_content.template-content .row .col-lg-6:first-child{
        margin-bottom: 24px;
    }
    .step_content.preview-content .row{
        flex-wrap: wrap;
        row-gap: 24px;
    }
    .step_content.preview-content .row .col-lg-3{
        width: 100%;
        padding: 0;
    }
    .step_content.preview-content .row .col-lg-6{
        width: 100%;
        padding: 0;
    }
    .step-header{
        align-items: start;
        flex-direction: column;
        gap: 16px;
    }
    .download-left-section {
        gap: 50px;
    }
    .login_shap2{
        bottom: 0px;
    }
}


@media only screen and (min-width:768px) and (max-width:991px){
     .campaign_type {
        grid-template-columns: repeat(3, 1fr);
    }
    .header-bar .search-box{
        width: 280px;
    }
    .template_modal .product-grid .template-item {
        width: 30.8%;
    }
    .login_screen .main_logo {
        padding: 20px 20px 40px 20px;
    }
    .login_form_content{
        padding:40px;
        margin:0 10px 40px;
    }
    .login_form_content h2{
        font-size: 28px;
    }
    .login_form input, .login_form select{
        padding: 15px 20px;
    }
    .login_slider_container{
        padding: 40px;
    }
    .login_slider_container h3{
        font-size: 22px;
        width: auto;
    }
    .slider_right_title{
        text-align: right;
    }
    .login_slider .slider_img{
        max-width: 400px;
        margin: auto;
        margin-top: 20px;
    }
}


@media only screen and (max-width:991px){
    .header {
        width:100%;
    }
    .toggle-info{
        display: block;
    }
    .sidebar-mobile{
        width: 300px !important;
    }
    .sidebar-nav{
        display: none;
    }
    .main-container{
        width: 100%;
    }
    .sidebar-mobile .sidebar .logo{
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 30px;
        padding: 0 0 32px;
    }
    .sidebar-mobile .sidebar .logo img{
        width: 75%;
    }
    .sidebar-mobile .sidebar{
        width: 300px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .template-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .template-item .product-details .info p{
        font-size: 16px;
    }
    .template_modal .modal-dialog {
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    

}

@media only screen and (max-width:767px){
    .campaign_type {
        grid-template-columns: repeat(3, 1fr);
    }
    .header-bar .user-info .user-details{
        display: none;
    }

    .sidebar-mobile .header-bar .search-box{
        display: flex;
        width: 100%;
        padding: 12px 16px;
    }
    .header-bar .search-box svg {
        width: 16px;
        height: 16px;
    }

    .header-bar .search-box{
        display: none;
    }
    .product-card .product-details .product-name{
        font-size: 14px;
    }
    .pagination-container{
        padding: 12px 16px;
    }
    .header h1{
        font-size: 20px;
    }
    .header-bar {
        gap: 10px;
    }
    .header-bar .user-info {
        gap: 10px;
    }
    .header {
        padding: 20px 16px;
    }
    .preview-header h2{
        font-size: 22px;
    }

    .template_modal .template-grid {
        gap: 16px;
    }
    .template_modal .product-grid .template-item {
        width: 30.8%;
    }
    .login_screen{
        padding: 40px 20px;
    }
    .login_screen .main_logo {
        padding: 20px 20px 30px 20px;
    }
    .login_form_content{
        padding:30px;
        margin:0 10px 30px;
    }
    .login_form_content h2{
        font-size: 30px;
    }
    .login_form{
        gap: 20px;
    }
    .login_form input, .login_form select{
        padding: 15px 20px;
    }
    .form_language_field, .form_pass_field{
        margin-bottom:10px;
    }
    .pass_extra_field{
        flex-wrap: wrap;
    }
    .login_slider_container{
        padding: 26px;
    }
    .login_slider_container h3{
        font-size: 20px;
        width: auto;
    }
    .slider_right_title{
        text-align: right;
    }
    .login_slider .slider_img{
        max-width: 400px;
        margin: auto;
        margin-top: 20px;
    }
   
}

@media only screen and (max-width: 575px) {
    .campaign_type {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps_status .step_count:nth-child(3){
        right: 20px;
    }
    .steps_status .step_count:nth-child(1) {
        left: 20px;
    }
    .steps_status {
        padding: 32px 16px;
    }
    .step_form_row {
        flex-wrap: wrap;
        gap: 24px;
    }
    .step_count span {
        width: 20px;
        height: 20px;
    }
    .steps_status:has(.step_count:nth-child(2).active)::after, .steps_status:has(.step_count:nth-child(2).completed)::after {
        width: calc(50% - 20px) !important;
    }
    .steps_status::after {
        left: 20px;
    }
    .steps_status::before{
        right: 20px;
        left:20px;
    }
    .sub_text{
        font-size: 14px;
    }
    h2 {
        font-size: 20px;
    }
    .step_head h3 {
        font-size: 18px;
    }
    .step_count div {
        font-size: 13px;
    }
    .step_count{
        gap: 4px;
    }
    .body-container {
        padding: 16px;
        gap: 16px;
    }
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .step-wrapper .product-description .para {
        font-size: 14px;
    }
    .pagination-container {
        flex-direction: column;
        gap: 16px;
    }
    .product-wrapper .pagination a, .pagination span {
        width: 30px;
        height: 30px;
    }
    .product-wrapper .pagination a, .pagination span{
        font-size: 12px;
    }
    .step_form_group input, .step_form_group select{
        font-size: 14px;
    }
    #bgColorInput{
        font-size: 14px;
    }
    .step_content.template-content .row .col-lg-6:first-child {
        margin-bottom: 16px;
    }
    .preview-header h2 {
        align-items: start;
        flex-direction: column;
        gap: 4px;
    }
    .preview-header h2{
        margin-bottom: 5px;
    }
    .top-header-title {
        font-size: 18px;
    }
    .price-tag-info {
        grid-template-columns: repeat(1, 1fr);
    }
    .price-tag-info > :last-child {
        grid-column: auto;
    }
    .download-left-section {
        padding: 16px;
    }
    .file-name-info {
        flex-direction: column;
    }
    .file-info .heading-info .top-header-title {
        text-align: center;
    }
    .right-bottom-content .heading-info .top-header-subtitle {
        text-align: center;
    }
    .right-bottom-content .download-file {
        padding: 16px;
    }
    .file-info button{
        padding: 10px;
    }
    .price-img-content img {
        width: 30px;
    }
    .preview-header h2 {
        align-items: start;
        flex-direction: column;
    }
    .step_buttons {
        align-items: start;
        flex-direction: column;
        width: 100%;
    }
    .step_buttons .btn {
        width: 100%;
    }
    .toggle-container {
        flex-direction: column;
        width: 100%;
    }
    .toggle-box {
        width: 100%;
    }
    .preview-content .preview-center-item .preview-image {
        width: 80%;
    }
    .template-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .product-wrapper {
        gap: 16px;
    }
    .price_modal .modal-content {
        padding: 16px;
    }
    .price_modal .modal-header{
        align-items: start !important;
    }
    .price_modal .modal-content {
        padding: 16px;
    }
    .template_modal .product-grid .template-item {
        width: 47.8%;
    }
}


@media only screen and (max-width: 480px){
    .campaign_type {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-card .product-details .product-name {
        font-size: 16px;
    }
    .select-productBox .product-card{
        flex-direction: column;
    }
    .search-wrapper {
        flex-direction: column;
    }
    .custom-select {
        width: 100%;
    }
    .select-productBox .item-input{
        width: 100%;
    }
    .preview-content .preview-center-item .preview-image {
        width: 100%;
    }
    .action_btn button {
        padding: 16px 12px;
    }
    .template-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .template_modal .product-grid .template-item {
        width: 47%;
    }
    .template-item .product-details .info span {
        font-size: 12px;
    }
    .price_modal .modal-title {
        font-size: 16px;
    }
    
}


@media only screen and (max-width:359px){
  .action_btn button {
        gap: 4px;
        padding: 16px 8px;
        font-size: 12px;
    }
    .template_modal .product-grid .template-item {
        width: 100%;
    }
}


