:root{
    --color-white: rgba(255, 255, 255, 1);
    --color-black: rgba(0, 0, 0, 1);
    --color-grey-100: rgba(241, 243, 244, 1);  /*#F1F3F4*/
    --color-gray-200: rgba(229, 229, 229, 1);
    --color-gray-300: rgba(167, 169, 169, 1);
    --color-gray-400: rgba(119, 124, 124, 1);
    --color-light-grey: rgba(248, 249, 250, 1); /*#F8F9FA*/
    --color-dark-grey: rgba(32, 33, 36, 1); /*#202124*/
    --color-dark-grey23: rgba(59,59,59, 1);/*#3b3b3b*/
    --color-light-grey:rgba(245,245,245,1); /*#f5f5f5*/
    --color-dark-silver:rgba(111,111,111,1); /*#6f6f6f*/
    --color-mint-light: rgba(230, 243, 239, 1); /* #e6f3ef */
    --darken-100: rgba(0, 0, 23, .043); 
   

    --color-green: rgba(1,135,95,1); /*#01875f*/
    --color-dark-green:rgba(9, 89, 67, 1); /*#095943*/
    --color-green-accents:rgba(15, 157, 88, 1); /*#0F9D58 Buttons, highlights, accents*/
    --color-yellow: rgba(244, 180, 0, 1); /*#F4B400 Decorative accents*/
    --color-blue: rgba(66, 133, 244, 1); /*#4285F4 Links, secondary actions*/
    --color-red: rgba(219, 68, 55, 1); /*#DB4437 Errors, warnings, highlights*/

    --remove-color:rgba(242, 101, 34,1);
    --remove-hover-color:rgb(234, 79, 7);
    
    --color-medium-grey: rgba(95, 99, 104, 1); /*#5F6368*/
    --color-medium-dark-grey: rgba(85, 85, 85, 1); /*#555*/
   
    --color-border:rgba(218,220,224, 1);
    

    --hover-color:var(--color-dark-green);
    --font-family:"Poppins", sans-serif;

    --font-size-xs: 0.6875rem; /*11px*/
    --font-size-sm: 0.75rem; /*12px*/
    --font-size-base: 0.875rem; /*14px*/
    --font-size-md: 1rem; /*16px*/
    --font-size-lg: 1.125rem; /*18px*/
    --font-size-xl: 1.375rem; /*22px*/
    --font-size-2xl: 1.625rem; /*26px*/
    --font-size-3xl: 2rem; /*32px*/
    --font-size-4xl: 2.375rem; /*38px*/



    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 800;

    --line-height-tight: 1rem;
    --line-height-normal: 1.4rem;

    
    /* Spacing */
    --space-0: 0;
    --space-1: 1px;
    --space-2: 2px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-base: 12px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
        0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    --layer-shadow:0 1px 2px rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    --header-shadow:0 3px 12px rgba(0, 0, 0, 0.12);

    /*--variable name--*/
    --background-bg: var(--color-white);
    --input-color:rgba(32, 33, 36, 1);


}

.dark-theme {
    --color-white: rgba(0, 0, 0, 1);
    --color-black: rgba(255, 255, 255, 1);

    --color-grey-100: rgba(32, 33, 36, 1);   /*#202124*/
    --color-gray-200: rgba(41, 42, 45, 1);
    --color-gray-300: rgba(95, 99, 104, 1);
    --color-gray-400: rgba(154, 160, 166, 1);

    --color-light-grey: rgba(48, 49, 52, 1);
    --color-dark-grey: rgba(241, 243, 244, 1);
    --color-dark-grey23: rgba(188, 188, 188, 1);

    --color-dark-silver: rgba(212, 212, 212, 1);
    --color-mint-light: rgba(26, 42, 38, 1); /* #1A2A26 */

    /* Accent Colors (unchanged but optimized for dark surroundings) */
    --color-green: rgba(81, 200, 153, 1);
    --color-dark-green: rgba(15, 157, 88, 1);
    --color-green-accents: rgba(118, 255, 184, 1);

    --color-yellow: rgba(255, 210, 70, 1);
    --color-blue: rgba(138, 180, 248, 1);
    --color-red: rgba(242, 139, 130, 1);

    --remove-color:rgba(242, 101, 34,1);
    --remove-hover-color:rgb(234, 79, 7);

    --color-medium-grey: rgba(189, 193, 198, 1);
    --color-medium-dark-grey: rgba(150, 150, 150, 1); /*#555*/
    

    --color-border: rgba(60, 64, 67, 1);

    --hover-color: rgba(50, 100, 75, 1);

    --font-family:"Poppins", sans-serif;

    --font-size-xs: 0.6875rem;
    --font-size-sm: 0.75rem;
    --font-size-base: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.375rem;
    --font-size-2xl: 1.625rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.375rem;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 800;

    --line-height-tight: 1rem;
    --line-height-normal: 1.4rem;

    /* Spacing */
    --space-0: 0;
    --space-1: 1px;
    --space-2: 2px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-base: 12px;
    --radius-md: 15px;
    --radius-lg: 25px;
    --radius-full: 9999px;

    /* Shadows adapted for dark surface */
    --shadow-xs: 0 1px 2px rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 1px 3px rgba(255, 255, 255, 0.07);
    --shadow-md: 0 4px 6px rgba(255, 255, 255, 0.09);
    --shadow-lg: 0 6px 12px rgba(255, 255, 255, 0.12);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.08),
                       inset 0 -1px 0 rgba(255, 255, 255, 0.04);

    --layer-shadow: 0 1px 2px rgba(255, 255, 255, .2),
                    0 1px 3px 1px rgba(255, 255, 255, .12);

    --header-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);

    /*--variable name--*/
    --background-bg: var(--color-white);
    --input-color:rgba(32, 33, 36, 1);
}

html {
    transition: background-color .2s ease, color .2s ease;
}
button, input, optgroup, select, textarea{font-family:var(--font-family)}
button:focus, input:focus, optgroup:focus, select:focus, textarea:focus{outline:none !important;box-shadow:none !important}
.body{font-family:var(--font-family);font-weight:var(--font-weight-regular);font-style:normal;background:var(--background-bg);line-height:var(--line-height-normal);font-size:var(--font-size-base);color:var(--color-dark-grey);}
.form-control,.form-select{font-size:var(--font-size-base);min-height:42px;border-radius:var(--radius-base);color:var(--color-dark-grey);}
.form-label{font-size: var(--font-size-base);font-weight:var(--font-weight-medium);}
.form-label sup{color:var(--remove-color)}
.flex-1{flex:1 !important}
.overflow-hidden{overflow: hidden !important;}
.full-width{width:100%;height:auto;}
.hidden{display:none !important;}
.d-block{display:block;}
.radius-100{border-radius:100%;}
.dark-text-link{color:var(--color-dark-grey)}
.mt-7{margin-top:70px;}
.grey-text{color:var(--color-medium-grey) !important;}
.green-text,.green-icon{color:var(--color-green);}
.theme-color{color: var(--color-dark-grey) !important;}
.btn-primary{background:var(--color-green);color:var(--color-white);padding:8px 25px;font-weight:var(--font-weight-medium);line-height:normal;}
.btn-fix-width{width:160px;}
.btn-primary:hover{background:var(--hover-color) !important;}
.btn{border:none;font-weight:var(--font-weight-medium);line-height:20px;padding:10px 25px;}

.add-badge-btn,.s-remove-btn{background:var(--color-green);color:var(--color-white);display:inline-flex;padding:4px 10px;border-radius:var(--radius-base);margin:10px 0;font-size:var(--font-size-sm);cursor: pointer;border-radius:25px;}
.add-badge-btn:hover{background:var(--color-dark-green);}
.add-badge-btn.disabled{opacity:.5;cursor:none;pointer-events: none;}

.s-remove-btn{background:var(--remove-color);}
.s-remove-btn:hover,.remove-btn:hover{background:var(--remove-hover-color);}

input::placeholder,
textarea::placeholder,.select2-search__field::placeholder {
    color: rgba(32, 33, 36, 1) !important;              /* placeholder text color */
    font-size: 14px !important;          /* placeholder size */
    font-weight: var(--font-weight-regular) !important;   
    font-family: var(--font-family) !important;          /* fix Firefox opacity issue */
}

.is-invalid,.input-error {
    border: 1px solid var(--remove-color) !important;
}
.is-not-valid .select2-selection--single,.is-not-valid .select2-selection--multiple{border:1px solid var(--remove-color) !important;}


.text-btn{font-size: var(--font-size-base);font-weight: var(--font-weight-medium);}
.text-btn:hover{color:var(--hover-color);}
.over-x-scroll{overflow-x:scroll;scroll-behavior:smooth;}
.none-scroll-bar{-ms-overflow-style: none;  scrollbar-width: none; }
.none-scroll-bar::-webkit-scrollbar {display: none;}

.font-sm{font-size:var(--font-size-sm);}
.font-base{font-size:var(--font-size-base);}
.font-md{font-size:var(--font-size-md);}
.font-lg{font-size:var(--font-size-lg);}
.font-xl{font-size:var(--font-size-xl);}
.font-2xl{font-size:var(--font-size-2xl);}
.font-3xl{font-size:var(--font-size-3xl);}
.font-4xl{font-size:var(--font-size-4xl);}


.fw-medium{font-weight: var(--font-weight-medium);}
.fw-regular{font-weight: var(--font-weight-regular);}
.fw-bold{font-weight: var(--font-weight-bold);}
.fw-extra-bold{font-weight: var(--font-weight-extra-bold);}
.fw-black{font-weight: var(--font-weight-black);}

.text-muted{color:var(--color-dark-grey) !important;}



.link-hover:hover{color:var(--hover-color) !important;}
.sm-icon{font-size:9px !important;}
.radius-12{border-radius:var(--radius-base);}
.radius-25{border-radius:25px;}

.shadow{box-shadow: var(--layer-shadow) !important}
.rounded-20{border-radius:20%;}

.no-editable{pointer-events:none !important;cursor:none !important;}


.data-title{position:relative;}
/* Tooltip box */
.data-title:hover::after {
  content: attr(data-title);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 2px 8px;
  border-radius: 5px;
  white-space: nowrap;
  font-size:var(--font-size-sm);
  z-index: 10;
  
}

/* Tooltip arrow */
.data-title:hover::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}


.header{padding:10px 15px;top:0;z-index:100;background:var(--color-white);}
.header-b-bottom{border-bottom:1px solid var(--color-border);}
.header.scrolled {
  box-shadow: var(--header-shadow); /* looks like Play Store */
}
/* .cat-top-sticky{position:sticky;top:65px;z-index:1000;background:#fff;padding-top:30px;} */
.sticky-section{position:sticky;z-index:9;top:117px;background:var(--color-white);padding:15px 0 1px}
.header-logo{width:260px;}
.header-logo2{width:105px;}
.header-logo img{width:100%;height:auto;}
.header-nav{width:100%;overflow:scroll;}
.header-nav::-webkit-scrollbar {
    display: none !important; /* hide scrollbar in Webkit browsers */
}
/* Optional for Firefox */
.header-nav{
    scrollbar-width: none !important; /* hide scrollbar in Firefox */
}
.header-nav a,.header-link{padding:18px 20px;color:var(--color-dark-grey);font-size:var(--font-size-base);font-weight:var(--font-weight-medium)}
.header-nav a{display:flex;white-space:nowrap;padding:0 20px;}
.header-link{opacity:.8;}
.header-nav a span{padding:18px 0;opacity:.9;}
.header-nav a.active span{border-bottom:2px solid var(--color-green);color:var(--color-green);font-weight:var(--font-weight-regular);opacity:1;}
.header-nav a:hover span,.header-link:hover{color:var(--color-black);opacity:1;}
.header-avtar{background:var(--remove-color);width:32px;height:32px;color:var(--color-white);font-size:var(--font-size-md);cursor:pointer;}
.header-dropdown{position:absolute;top:50px;z-index:100;;right:0;width:320px;padding:10px 0;background:var(--color-white);box-shadow: var(--layer-shadow);border-radius:var(--radius-base);opacity:0;visibility:hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;}

.header-dropdown.show{opacity: 1;
    visibility: visible;
    transform: translateY(0);}
.header-dropdown a{color:var(--color-dark-grey);padding:15px 20px;font-size:var(--font-size-base);font-weight:var(--font-weight-regular);transition: background-color 0.2s ease, color 0.2s ease;}
.header-dropdown a:hover {
  background-color: var(--color-grey-100);
  color: var(--color-black);
}
.header-dropdown a:active {
  background-color: #e8eaed;
}
.header-dropdown-bottom{border-top:1px solid var(--color-gray-200);margin-top:10px;}
.header-dropdown-bottom a{font-size:13px;color:var(--color-medium-grey);}
.header-profile-card {padding:15px 15px 20px;margin-bottom:10px;border-bottom:1px solid var(--color-gray-200);}

.login-btn{color:var(--color-dark-grey);opacity:.9;cursor: pointer;}
.login-btn:hover{opacity:1;}

.profile-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.profile-avatar {
    background: var(--remove-color);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.profile-info .profile-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
}

.profile-info .profile-email {
    font-size:var(--font-size-sm);
    color: var(--color-medium-grey);
   
}

.google-manage-btn {
    width:auto;
    display:flex;
    justify-content: flex-end;
    color:var(--color-dark-grey);
    padding: 8px 15px;
    border-radius: 35px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-size:13px;
    font-weight:var(--font-weight-regular);
    line-height:normal;
}

.google-manage-btn:hover {
    background: #f6f6f6;
    border-color: #ccc;
}

.header-faq{font-size:30px;font-weight:var(--font-weight-regular);color:#5f6368;}
.header-search-form .form-control{margin:0;height:48px;padding:0 50px 0 20px;box-shadow: var(--layer-shadow);font-size:var(--font-size-base);background:var(--color-white);color:var(--color-dark-grey);}
.header-search-form .form-control::placeholder { color: var(--color-dark-grey); }
.header-search-form .form-control::-webkit-input-placeholder { color: var(--color-dark-grey); }
.header-search-form .form-control:-ms-input-placeholder { color: var(--color-dark-grey); }
.header-search-form .form-control::-ms-input-placeholder { color: var(--color-dark-grey); }
.header-search-form .search-icon{padding-right:15px;}
.header-search-form #clear-btn{margin-left:15px;color:var(--color-dark-grey);margin-right:40px}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    margin-top: 6px;
    padding: 0;
    list-style: none;
    box-shadow: var(--shadow-lg);
    max-height: 220px;
    overflow-y: auto;
    z-index: 20;
    font-size:var(--font-size-base);
}

.search-suggestions li {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-gray-200);
}

.search-suggestions li:last-child {
    border-bottom: none;
}

.search-suggestions li:hover {
    background: #f5f5f5;
    color:rgba(32, 33, 36, 1);
}

.search-suggestions i {
    color: #666;
}

.scroll-bar::-webkit-scrollbar{width: 6px;}
.scroll-bar::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-bar::-webkit-scrollbar-thumb {
    background: var(--color-gray-200);
    border-radius: 4px;
}

.scroll-bar::-webkit-scrollbar-thumb:hover {
    background: #b8b8b8;
}

/* Firefox */
.scroll-bar {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gray-200) transparent;
}

.form-control:focus,.form-select:focus,.form-control:hover,.form-select:hover {border-color: var(--color-dark-green) !important;}
.radius-list li a{padding:6px 18px;border:1px solid var(--color-gray-200);border-radius:var(--radius-lg);font-size:var(--font-size-base);font-weight:var(--font-weight-regular);margin-bottom:40px;margin-top:30px;white-space:nowrap}
.cat-list li a.active,.cat-list li a:hover,#add-favourite.active{background:var(--color-mint-light);color:var( --color-green-accents);border-radius:var(--radius-lg);}
#add-favourite.active{border-radius:var(--radius-base);}
.section-title h2{font-size:var(--font-size-xl);line-height:2rem;font-weight:var(--font-weight-medium);margin-bottom:25px;}
.section-title h2 .small-text{font-size:var( --font-size-sm);margin-top:5px;}
.section{margin-bottom:35px;}
.section-sm-container{max-width:850px;}

.swiper-pagination-bullet{background:var(--color-mint-light);}
.swiper-pagination-bullet-active{background:var( --color-green-accents);}
.swiper-button-prev,.swiper-button-next{background:var(--color-white);width:42px;height:42px;display:flex;color:var(--color-medium-grey);border-radius:100%;box-shadow: var(--layer-shadow)}
.swiper-button-prev:after,.swiper-button-next:after{font-size:20px;font-weight:600;}
.info-swiper-banner .swiper-pagination{width:calc(100% - 80px);padding-left:80px;}

/* .hover-card::after{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background:var(--color-gray-200);border-radius: var(--radius-md);padding:15px 15px;z-index:-1;} */

.banner-skip-btn{position:absolute;right:10px;bottom:10px;background:var(--color-mint-light);color:var( --color-green-accents);padding:6px 15px;border-radius:var(--radius-lg);cursor:pointer;z-index:9999;}
.featured-card {position: relative;display:flex;flex-direction: column;border-radius: var(--radius-md);overflow: hidden;background: var(--color-black);box-shadow:var(--layer-shadow);z-index:10;}
.featured-card .featured-image{max-height:285px;object-fit:cover;object-position: center}

.banner-swiper img{max-height:362px;object-fit:cover;object-position: center;}
/* .feature-image-card{height: 340px;} */
.badge-top{position:absolute;top:0;left:0;padding: 6px 14px;color:var(--color-white);font-size:var(--font-size-base);border-bottom-right-radius:var(--radius-base);font-weight:var(--font-weight-regular);background:rgba(0, 0, 0, 0.65);}
.badge-top-right{
    left: auto;
    right:0;
    border-radius: 0;
    top:0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 8px;background:var(--color-dark-silver);padding:4px 8px;font-size:var(--font-size-sm);}


    

/* Shine overlay */
.shimmer-badge{overflow:hidden;}
.shimmer-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transform: skewX(-20deg);
    animation: shine 2.2s infinite;
}

/* Shine animation */
@keyframes shine {
    0%   { left: -80%; }
    60%  { left: 140%; }
    100% { left: 140%; }
} 
.featured-bg{width: 100%;height: 100%;object-fit: cover;filter: brightness(0.75);}
.featured-badge{background: rgba(0, 0, 0, 0.65);color:#fff;}
.featured-content{color:var(--color-white);margin:15px 15px;}
/* .feature-bottom-content{position:absolute;bottom:0;left:0;right:0;} */

/* Title */
.featured-title {font-size:var(--font-size-md);font-weight: var(--font-weight-medium);margin: 0 0 16px 0;}

/* App icon */
.featured-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-base);
    object-fit: cover;
    background:var(--color-gray-200);
}


.info-text .publisher {
    font-size: var(--font-size-sm);
    opacity: 1;
}

.feature-image-card .info-text .publisher{color:var(--color-white);opacity:.8;margin-top:3px;}
.feature-image-card .info-text .publisher .tc-rating{color:var(--color-white);opacity:.8;}

/* Install button */
.feature-action{display:flex;flex-direction:column;justify-content: flex-end;}
.feature-action .feature-btn,.btn-action {
    background: var(--color-dark-grey23);
    color: var(--color-white);
    padding: 7px 15px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    font-size:var(--font-size-base);
    line-height:normal;
}
.btn-radius-10{border-radius: 10px;}
.btn-radius-25{border-radius:25px;}
.btn-radius-50{border-radius:50px;}
#load-more{border-radius:var(--radius-base);}

.btn-action:hover {
    background: #4a4a4a;
}
.back-btn{width:auto;display:inline-flex;cursor: pointer;}
.page-link-back a{color:var(--color-medium-dark-grey);}

/* In-app purchases note */
.purchase-note {
    margin-top: 5px;
    font-size:var(--font-size-xs);
    opacity: 0.8;
    font-weight:var(--font-weight-regular);
    color:var(--color-white);
    line-height: var(--line-height-tight);
}


/* Tabs */
.tc-tabs {
    display: flex;
    gap: 12px;
}

.tc-tabs button {
    padding: 6px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    cursor: pointer;
    font-size:var(--font-size-base);
    font-weight:var(--font-weight-regular);
}

.tc-tabs button.active {
    background: #dff6ea;
    border-color: #b0ead4;
    color: var(--color-green);
}

/* ROW layout */
.tc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tc-key-list {
    max-width:275px;
    display: flex;
    flex-wrap: nowrap;      /* ❗ Prevent line breaking */
    overflow-x: auto;       /* ❗ Enable horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;    /* ❗ Keep items on a single line */
    scrollbar-width: none;  /* Hide scrollbar (Firefox) */
}

.tc-key-list::-webkit-scrollbar {
    display: none;          /* Hide scrollbar (Chrome/Safari) */
}

.tc-key-list li {
    flex: 0 0 auto;         /* ❗ Prevent shrinking */
    white-space: nowrap;
}


/* .tc-grid-repeat2{
    grid-template-columns: repeat(2, 1fr);
} */
.tc-grid-repeat2{
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    width:100%;
}
.analy-page-wrapper .tc-grid{display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 25px 10px;}
.tc-grid-flex{display:flex;gap:25px;}
.tc-column-grid{display:flex;flex-direction:column}
.tc-grid a{ background:var(--color-light-grey);border-radius:15px;padding:5px 15px;transition: background 0.3s ease;box-shadow: var(--shadow-lg);}
.tc-grid a:hover{background:var(--color-gray-200);}
.tc-grid a:hover li{color:var(--color-black);border:1px solid var(--color-dark-grey)}
.tc-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-radius: var(--radius-md);
    position: relative;
    line-height:1.4rem;
}

.tc-row.selected {
    background: #f5f5f5;
}

.tc-rank {
    font-size: var(--font-size-md);
    color: var(--color-medium-dark-grey);
    width: 22px;
    text-align:left;
    margin-right:10px;
}

.tc-icon {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-base);
    margin-right: 15px;
    object-fit: cover;
}

.tc-info {
    flex-grow: 1;
}

.tc-title {
    font-size:var(--font-size-md);
    font-weight:var(--font-weight-regular);
    color:var(--color-dark-grey);
}

.tc-tags {
    font-size:var(--font-size-base);
    color: var(--color-dark-grey);
    display:flex;
    align-items: center;
    gap:10px;
}
.tc-rating .sm-icon{font-size:8px !important;}
.tc-key-radius-list li{border:1px solid var(--color-gray-300);border-radius: var(--radius-lg);margin:5px 0 0;padding:2px 12px;color:var(--color-dark-grey);font-size:var(--font-size-sm);font-weight:var(--font-weight-regular);transition: color 0.3s ease, border-color 0.3s ease; }

.tc-rating {
    font-size: var(--font-size-base);
    color: var(--color-medium-grey);
    display:inline-flex;
    align-items: center;
    gap:5px;
}
.tc-row-edit-btn{position:absolute;top:5px;left:5px;}
.edit-btn a{font-size:10px;padding:0;box-shadow:none;background:none;color:#fff;}
.edit-btn a:hover{background:none;}
.edit-circle-btn{width:22px;height:22px;color:var(--color-white);background:var(--color-medium-grey);border-radius:100%;display:flex;align-items: center;justify-content: center;}


/* Arrow button (right end) */
.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    background: var(--color-white);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 12px;
}

.spotlight-section {
  padding: 30px;
}

.title {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: var(--color-medium-grey);
  font-size: var(--font-size-base);
  font-weight:var(--font-weight-regular);
  line-height:var(--line-height-normal);
  margin-bottom: 20px;
}

.spotlight-container {
  display: flex;
  background: #3e3e3e;
  color:var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}


.left-box {
  flex: 1;
  padding: 30px;
}

.spotlight-badge {
  background: var(--color-dark-silver);
}

.left-box h2 {
  margin-top: 40px;
  font-size:var( --font-size-4xl);
  line-height: 3.25rem;
}

.spotlight-container .desc {
  margin-top: 15px;
  font-size: var(--font-size-2xl);
  line-height:2.25rem;
}

.spotlight-box {
  margin-top: 30px;
  color: var(--color-black);
  padding:15px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spotlight-box-content img{background:var(--color-medium-grey);border-radius:var(--radius-base);width:65px;height:65px;object-fit:cover;}

.spotlight-box .logo-sm-img {
  width: 65px;
  border-radius:var(--radius-base)
}

.spotlight-box .btn-action{background:#636669;min-width:90px;}
.spotlight-box .btn-action:hover{opacity:.8;}

.spotlight-box .h4{font-size:var(--font-size-lg);margin-bottom:0;color:#fff;font-weight:var(--font-weight-medium)}

.spotlight-box .publisher,.spotlight-box .publisher .tc-rating {
    color:#fff;
    opacity: .8;
    margin-bottom:0;
    font-size: var(--font-size-base);
    font-weight: 400;
    letter-spacing: .00625em;
    line-height: var(--line-height-normal);
    margin-top:5px;
}

/* Right video thumbnail */
.right-box {
  flex: 1.2;
  position: relative;
}

.video-thumb {
  position: relative;
  height: 100%;
}

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  background: rgba(0,0,0,0.6);
  width: 62px;
  height: 62px;
  text-align: center;
  line-height: 62px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-white);
}

.hero-header-img{max-width:240px;max-height:240px;object-fit:cover;}
.header-meta-title{font-size:3.8rem;line-height:4.8rem;font-weight:var(--font-weight-medium);max-width:800px;overflow:hidden;}
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.stat-item {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-medium-grey);
}

.stat-item span:first-child {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
}

.stat-dot {
    width: 1px;
    height: 28px;
    background: #ddd;
}

.screenshots-container {
    width: 100%;
    overflow: hidden;
}

.screenshots-wrapper {
    min-width:100%;
    max-width:950px;
}

.shot-card {
    color: var(--color-white);
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-items: center;
    max-width: 100%;
    max-height: 260px;
    min-height: 260px;
    padding: 5px 5px;
    border: 1px dashed var(--color-border);
    border-radius: 12px;
    object-fit: cover;
}

.shot-card img {
    width: 100%;
    border-radius:var(--radius-md);
    object-fit: cover;
}

.shot-card h3 {
    font-size: var(--font-size-md);
    margin-top: 10px;
    line-height: var(--line-height-normal);
}


/*reviews-section*/
.rate-stars {
    font-size: 22px;
    color: var(--color-medium-grey);
    cursor: pointer;
    display: flex;
    gap: 20px;
}

.rate-stars i {
    transition: 0.2s ease;
}

.rate-stars i.active {
    color:var(--hover-color); 
}

.write-review-link {
    color: var(--color-green);
    text-decoration: none;
    font-size: 16px;
}

.write-review-link:hover {
    text-decoration: underline;
    color: var(--hover-color);
}

.write-review-box {
    display:flex;
    flex-direction: column;
    gap: 15px;
}

.write-review-box textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--color-gray-200);
    resize: none;
}
.write-review-box textarea:hover,.write-review-box textarea:focus{outline:none;}
.write-review-box .btn{width:180px;}
/* 
.reviews-section {
    margin: 40px 0;
} */

.review-card {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-gray-200);
}
.review-card:last-child{border-bottom:none;}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.reviewer-name {
    margin: 0;
    font-size: var(--font-size-md);
}

.review-stars {
    font-size: var(--font-size-base);
    color: var(--color-green);
    font-size:var(--font-size-xs);
}

.review-stars .date {
    color: var(--color-medium-grey);
    margin-left: 10px;
    font-size:var(--font-size-base);
}
.review-container {
    position: relative;
    display: inline-block;
}

/* The 3 dots */
.review-card .review-action-item{margin-left: auto;}
.menu-dots {
    font-size: var(--font-size-xl);
    cursor: pointer;
    color: var(--color-dark-grey);
}
/* .menu-dots:hover{background:var(--color-gray-200);box-shadow: var(--shadow-lg);} */

/* Popup Menu */
.review-popup-menu {
    position: absolute;
    right: 0;
    top: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 180px;
    overflow: hidden;
    z-index: 10;
}

.review-popup-menu.hidden {
    display: none;
}

/* Menu Items */
.review-popup-item {
    padding: 12px 14px;
    cursor: pointer;
    font-size: 14px;
}

.review-popup-item:hover {
    background: var(--color-grey-100);
}

/* Snackbar */
#snackbar {
    visibility: hidden;
    min-width: 260px;
    background: #323232;
    color: white;
    padding: 12px;
    border-radius: 4px;
    position: absolute;
    left: 0;          /* align to container start */
    bottom: -20px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#snackbar.show {
    visibility: visible;
    opacity: 1;
}

.review-text {
    margin: 15px 0 0;
    line-height: var(--line-height-normal);
    font-size:var(--font-size-base);
    color: var(--color-medium-grey);
}

.helpful-count {
    color: #666;
    font-size: var(--font-size-base);
    margin-bottom: 10px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-base);
}

.yes-btn,
.no-btn {
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    font-size: var(--font-size-base);
    background: var(--color-white);
    transition: 0.2s;
}

.yes-btn:hover,
.no-btn:hover {
    background: #f5f5f5;
}



.updated-info {
    margin: 25px 0;
}

.tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: var(--color-grey-100);
    padding: 6px 14px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    border-radius: 20px;
    display: inline-block;
}


.card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.similer-product-card {
    width: 415px;
    height: 260px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: var(--shadow-lg);
}
.card-animation{ transition: transform .3s ease, box-shadow .3s ease;}


.similer-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-animation:hover{transform: translateY(-4px);
    box-shadow: var(--shadow-lg);}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: var(--font-size-base);
}

.card-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: var(--color-white);
}

.card-content h3 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    line-height:var(--line-height-normal);
    margin: 0;
    color:#fff;
}





/* DATA SAFETY SECTION */

.section-desc {
    max-width: 700px;
    line-height: var(--line-height-normal);
    margin-bottom: 25px;
}

.data-box {
    border: 1px solid var(--color-gray-200);
    border-radius:var(--radius-md);
    padding: 25px;
    max-width: 850px;
    background:var(--color-white);
}

.data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.data-item-text strong{font-weight:var(--font-weight-medium);}

.data-item .icon {
    font-size: 18px;
    margin-top: 4px;
    color: var(--color-medium-grey);
}

.data-item p {
    margin: 3px 0 0 0;
    color: #666;
    font-size: var(--font-size-base);
}

.see-details {
    color: #0b57d0;
    font-weight: var(--font-weight-medium);
    display: inline-block;
    margin-top: 10px;
}


/* RATINGS SECTION */
.ratings-container {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    align-items: flex-start;
}

.rating-left {
    width: 120px;
}

.rating-score {
    font-size: var(--font-size-4xl);
    font-weight:var(--font-weight-medium);
}

.stars span i {
    color: var(--color-green);
    font-size: var(--font-size-base);
    margin: 15px 0;
    font-size:12px;
}

.review-count {
    margin-top: 5px;
    color: #666;
    margin-bottom:0;
}


/* RATING BARS */
.rating-bars {
    flex-grow: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    font-size: var(--font-size-base);
}

.bar {
    flex-grow: 1;
    height: 10px;
    background: #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--color-green);
    border-radius: 10px;
}

.support-title{font-size: var(--font-size-lg);font-weight:var(--font-weight-medium);cursor: pointer;}
.developer-section h3{font-size:var(--font-size-md);font-weight:var(--font-weight-medium);}
.developer-section p{line-height:var(--line-height-normal);color:var(--color-medium-grey);}

.support-dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.35s ease,
        opacity 0.25s ease;
}


.support-dropdown.show {
    max-height: 285px; 
    opacity: 1;
    overflow-y:scroll;
}
.support-item a{display:flex;color:var(--color-black);}


.chevron .icon {
    transition: transform 0.3s ease;
}

.chevron.rotate .icon {
    transform: rotate(180deg);
}

.description{color:var(--color-medium-grey);line-height:var(--line-height-normal);}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ratings-container {
        flex-direction: column;
    }

    .rating-left {
        width: auto;
        text-align: center;
    }
}


.results-header {
    font-size: var(--font-size-lg);
    margin-bottom: 20px;
    
}

.search-term {
    font-weight: var(--font-weight-medium);
    color: var(--color-green);
}

.search-instead {
    margin-top: 5px;
    color: #777;
    font-size: 15px;
}

.search-instead a {
    color: #1a73e8;
    text-decoration: none;
}

.page-header-title h3{font-size:var(--font-size-xl);font-weight: var(--font-weight-medium);margin-bottom:0;}
.p-b-bottom{border-bottom:1px solid var(--color-gray-200);padding-bottom:20px;}
.cursor-pointer{cursor: pointer;}
.grid-items-card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.grid-card {
    border-radius:var(--radius-base);
    overflow: hidden;
    margin-bottom:40px;
    line-height:1.4rem;
}

.banner img {
    width: 100%;
    height:auto;
    object-fit: cover;
    display: block;
    margin-bottom:15px;
    border-radius:10px;
}

.grid-info {
    display: flex;
    padding: 12px;
    gap: 12px;
    align-items: center;
}

.grid-card-info .icon {
    width: 64px;
    height: 64px;
    border-radius:var(--radius-base)

}

.grid-card-info .name {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-regular);
    color: var(--color-dark-grey);
}

.grid-card-info .dev {
    font-size: var(--font-size-base);
    color: var(--color-dark-grey);
}

.grid-card-info .rating {
   font-size: var(--font-size-sm);
    color: var(--color-medium-grey);
}





/*modal css*/
.modal-close-btn {
    border: none;
    border-radius: 50%;
    background:none;
    cursor: pointer;
    line-height:normal;
    z-index:100;
    color: var(--color-dark-grey);
    transition: 
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    
}
.mb-p-absolute{ position: absolute;
    top: 15px;
    right: 15px;}
.mb-bg-white{
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);box-shadow: var(--shadow-lg);}
.mb-bg-white:hover{background: rgba(255,255,255,1);box-shadow:var(--shadow-lg);color:rgba(32, 33, 36, 1);}
.modal-close-btn:hover,.hover-scale:hover{transform: scale(1.1);}
.modal-title{border-bottom:1px solid var(--color-gray-200);padding-bottom:10px;margin-bottom:20px;font-size:var(--font-size-lg);font-weight:var(--font-weight-medium);}
.modal-header-logo{width:32px;}
.modal-header .modal-close-btn{padding:0;}
.message-modal .modal-body a{color:var(--color-green);}

#preview-modal .preview-modal-image{width:100vh;height:90vh;}

/*Login card */
.login-card,.modal-content-bg {
    border-radius: 16px;
    background: var(--color-white);
    position: relative;
    color:var(--color-dark-grey);
}
.login-card .form label{margin-bottom:5px;}

/* Buttons */
.login-card .btn{padding-top:11px;padding-bottom:11px;font-size:var(--font-size-base);font-weight:var(--font-weight-medium);line-height:20px;}
.login-card h5{font-size:var(--font-size-lg);font-weight:var(--font-weight-medium);color:var(--color-dark-grey);}
.login-card .form-control{font-size:var(--font-size-base);font-weight:var(--font-weight-regular);height:42px;}
.form-control.add-badge{min-height:36px;height:36px;}
.form-control{border:1px solid var(--color-border)}
.login-card .form-control:focus{box-shadow:none;}
.btn-facebook {
    background: #1877f2;
    color: var(--color-white);
}
.btn-facebook:hover,.btn-facebook:focus {
    background: #0c59d4;
    color:var(--color-white);
}

.btn-google {
    background: #fff;
    color: var(--color-dark-grey);
    border:1px solid var(--color-border)
}
.btn-google:hover,.btn-google:focus,.btn-email:active {
    background: var(--color-dark-grey);
    color:var(--color-white);
}

.btn-linkedin {
    background: #0A66C2;
    color: var(--color-white);
}
.btn-linkedin:hover,.btn-linkedin:focus,.btn-email:active {
    background: #094e93;
    color: var(--color-white);
}

.btn-email {
    background: var(--color-green);
    color: var(--color-white);
}
.btn-email:hover,.btn-email:focus,.btn-email:active{
    background:var(--hover-color) !important;color:var(--color-white) !important;
}


/* Switch container */
.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

/* Hide checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Slider design */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 50px;
  transition: 0.3s;
}

/* Circle */
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

/* Checked state */
input:checked + .slider {
  background-color:var(--color-green);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.media-items img{width:120px;height:auto;margin-bottom:30px;}

.social-list {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.social-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: var(--color-green);
    text-decoration: none;
}

.social-list li a:hover {
    color: var(--color-dark-green);
}

.sidebar-steps{padding-right:30px;height:calc(100vh - 140px);padding-top:25px;max-width:400px;position:sticky;top:163px;}
.sidebar-steps{top:110px}
.sidebar-header{border-bottom:1px solid var(--color-border);margin-bottom:15px;}
.sidebar-header h3{font-size:var(--font-size-xl);line-height:2rem;width:300px;margin-bottom:2px;}
.sidebar-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-steps li {
    padding: 15px 15px;
    margin-left: 12px;
    position: relative;
    font-size: 15px;
    color: var(--color-green);
}

/* Completed steps (checkmark) */
.sidebar-steps li.done::before {
    content: "✔";
    position: absolute;
    left: -10px;
    color: color(--color-green);
    font-size: 14px;
}

.sidebar-steps li.done::after{position: absolute;
    position: absolute;
    content: '';
    border-right: 1px solid var(--color-border);
    height: 30px;
    left: -6px;
    top: 39px;}
.sidebar-steps li:last-child.done::after{border:none}

/* Active step (arrow) */
.sidebar-steps li.active::before {
    content: "➜";
    position: absolute;
    left: -10px;
    color: var(--color-green);
    font-size: 14px;
    font-weight: bold;
}

/* Future steps */
.sidebar-steps li:not(.done):not(.active) {
    color: var(--color-medium-grey);
}

.step-content{border:1px solid var(--color-border);flex:1;border-bottom:0;border-top-right-radius:10px;border-top-left-radius:10px;}
.step-content .form-group,.step-content .media-field{margin-bottom:20px !important;}
.step-content .text-danger{display:block !important;}
.step-content .step-box{display:none;}
.step-box.active{display:block;}
.step-f-width{max-width:70%;}
.step-content textarea{min-height:220px;max-height:auto;resize: none;padding:15px 110px 15px 15px;}
/* .step-scroll-bar{max-height:calc(100vh - 140px);overflow-y:scroll;padding:25px 25px;} */
.step-scroll-bar{padding:25px 25px;}
.goal-card {
  padding:0;
  color: var(--color-dark-grey);
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  align-items: center;
  border-radius:15px;margin-bottom:30px;
  background:var(--color-white);
}

.goal-card h2, 
.goal-card h3, 
.goal-card p {
  color:var(--color-dark-grey)
}

.goal-card .goal-card-content {
  display: flex;
  gap: 40px;
}


.goal-card .item-img{display:flex;align-items: center;justify-content: center;text-align: center;width:100%;height:49px;margin-bottom:10px;}

.goal-card .card-item {
  background: var(--color-white);
  border-radius: 25px;
  padding:18px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes start button to bottom */
  align-items:center; /* left align text */
  width: 300px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  box-shadow:var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor:pointer;
}

.goal-card .card-item:hover {
  transform: translateY(-3px);
  box-shadow:var(--shadow-lg);
  background:var(--color-green);
  color:var(--color-white);
}
.goal-card .card-item:hover h3{color:var(--color-white);}
.goal-card .card-item.active{ background:var(--color-green);
  color:var(--color-white);}
.goal-card .card-item.active h3{color:var(--color-white);}

.goal-card h2 {
  font-size: 2.5rem;
  font-family: "Century751Bold", serif;
  margin-bottom:30px;
}

.goal-card h3 {
  font-size:var(--font-size-xl);
  width: 100%;
  text-align: center;margin-bottom:3px;
  font-weight:var(--font-weight-medium);
}

.goal-card p {
  max-width: 100%;
  text-align: center;
  font-size:13px;color:var(--color-medium-grey);
}

.goal-card .start-btn {
  align-self: flex-end; /* move to bottom right */
  margin-top: auto;
  cursor: pointer;
  font-weight:var(--font-weight-medium);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  font-size:1.2rem;
  margin-top:25px;
}

.goal-card .card-item:hover .start-btn {
  color: #4ec3ff;
}


/* Basic layout */

.media-upload-container {
    display: flex;
    flex-direction: column;
}


.upload-box {
    border: 1px dashed var(--color-border);
    padding: 25px;
    text-align: center;
    border-radius: var(--radius-base);
    background: var(--color-grey-100);
    cursor: pointer;
    display:flex;justify-content: center;align-items: center;object-fit:contain;overflow:hidden;
}
.logo-upload-box{width:200px;height:200px;overflow:hidden;}

#logoPreviewImg {
    max-width:100%;
    max-height:100%;
    position: absolute;
    object-fit:contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-base);
}

/* .remove-logo-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0,0,0,0.55);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
} */

.screenshot-box {
    aspect-ratio: 333 / 592; /* Keeps exact shape */
    width: 200px;            /* Set smaller size */
    max-width: 200px;        /* Prevent growing */
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: border 0.3s ease;
}
@keyframes borderPulse {
    0% { border-color: #dc3545; }
    50% { border-color: #ff6b6b; }
    100% { border-color: #dc3545; }
}

.screenshot-box.error {
    animation: borderPulse 0.6s ease 0s 3;
}


.form-wrapper{display:flex;flex-direction:column;gap:10px;}
.location-container.form-wrapper{gap:0;}
.append-remove-btn{border-radius:100%;width:42px;height:42px;padding:0;display: flex;
    align-items: center;
    justify-content: center;font-size:var(--font-size-base);margin:0;background:var(--remove-color);}


/* Uploaded image */
.screenshot-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop and preserve ratio */
    position: absolute;
    top: 0;
    left: 0;
    background:var(--color-grey-100);
}

/* Remove button */
.screenshot-box .remove-btn,.remove-banner-btn,.remove-logo-btn,.remove-associate-btn,.modal .remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    line-height:normal;
    font-size:var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    background: var(--color-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.25s 
    ease, transform 0.25s 
    ease, box-shadow 0.25s 
    ease;
}

.screenshot-box .remove-btn i,.remove-banner-btn i,.remove-logo-btn i,.remove-associate-btn i{line-height:normal;}
.append-screenshot-box{ aspect-ratio: 333 / 592; 
    width: 200px;    
    cursor: pointer;  
    background: var(--color-grey-100);      
    max-width: 200px;border:1px dashed var(--color-border);border-radius: var(--radius-base);display:flex;align-items: center;justify-content: center;gap:10px;}
.append-screenshot-box.disable{opacity:.5;pointer-events:none;}
.circle-icon{width:42px;height:42px;border-radius:100%;border:1px solid var(--color-border);display:flex;align-items: center;justify-content: center;cursor:pointer;background:var(--color-green);color:var(--color-white);}

.banner-upload-box {
    width: 600px;     /* your container width */
    height: 335px; 
    border: 2px dashed #d9d9d9;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f8f8f8;
    padding:0;
}
/* Banner Image Preview */
#bannerPreviewImg {
    width: 100%;
    height: auto;
    object-fit: contain;   /* maintains aspect ratio */
    object-position: center;
    display: block;
}



.upload-placeholder {
    text-align: center;
    color: var(--color-dark-grey);
}





.upload-box.dragover {
    background: #eaf6ff;
    border-color: #007bff;
}

.upload-placeholder{display:flex;align-items: center;justify-content: center;flex-direction: column;}

.upload-placeholder i {
    font-size: 32px;
    color: #777;
}

.media-preview img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 8px;
}


.screenshots-preview img {
    width: 100%;
    border-radius: 6px;
}

.screenshots-preview .preview-thumb {
    margin-bottom: 10px;
    max-width:200px;
}

.preview-thumb img{width:100%;height:auto;}

.screenshot-thumb {
    width: 140px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #eee;
}

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

.remove-shot {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.55);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.upload-placeholder i{color:var(--color-medium-grey)}
.media-upload-btn{font-size:var(--font-size-sm);font-weight:var(--font-weight-medium);padding:0 12px;color:var(--color-medium-grey)}
.media-upload-btn:hover,.media-upload-btn:active,.media-upload-btn:focus{background:transparent !important;color:var(--color-medium-grey) !important;}

.video-list li {
    border: 1px solid #ddd;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 6px;
    background: #fff;
    display: flex;
    justify-content: space-between;
}
.select2-container{width:100% !important;}
.select2-container .select2-selection--single .select2-selection__rendered{padding-left:15px;}
.select2-container--default .select2-selection--single,.select2-container--default .select2-selection--multiple{border:1px solid var(--color-border);border-radius:var(--radius-base);}
.select2-container--default .select2-selection--single:hover,.select2-container--default .select2-selection--multiple:hover{border:1px solid var(--color-dark-green)}
.select2-container--default .select2-selection--multiple{padding:0 !important;}
.select2-container .select2-selection--single,.select2-container--default .select2-selection--single .select2-selection__arrow{height:42px;}
.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:42px;font-size:14px !important;font-weight:400 !important;color:rgba(32, 33, 36, 1) !important;}
.select2-container--default .select2-search--inline .select2-search__field{min-height:25px;margin:0;padding-left:0;}

.select2-selection__rendered li{margin-bottom:8x;}
.select2-container--default .select2-selection--multiple .select2-selection__choice{margin-top:0;margin-left:0;margin-right:0}

.select2-container--default .select2-selection--multiple .select2-selection__choice{background:transparent;border:1px solid var(--color-green);border-radius:25px;font-size:var(--font-size-sm);font-weight:var(--font-weight-medium);}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{border-right:1px solid var(--color-green);}
.select2-container--default.select2-container--focus .select2-selection--multiple{border:1px solid var(--color-dark-green)}
.select2-container .select2-selection--multiple .select2-selection__rendered{gap:5px;flex-wrap: wrap;display: inline-flex;margin-bottom:0;}

.select2-dropdown{border:1px solid var(--color-border);border-radius:10px}
.select2-results__options li:hover,.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background:var(--color-green) !important;color:#fff !important;}

/* Placeholder inside Select2 box */
.select2-container .select2-selection__placeholder {
    color: rgba(32, 33, 36, 1);       /* placeholder color */
    font-size: 14px !important;   /* placeholder font size */
    opacity: 1 !important;        /* ensure visible */
    font-family: var(--font-family);
    font-weight: 400 !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{color: rgba(32, 33, 36, 1);}

/* Text when selected */
.select2-container .select2-selection__rendered {
    color: #333 !important;       /* normal text color */
    font-size: 14px !important;   /* same size */
}

/* Dropdown options */
.select2-container .select2-results__option {
    font-size: 14px !important;
    padding:6px 15px;
    color:rgba(32, 33, 36, 1);
}

.no-sinput-field .select2-search__field{display:none !important;}


.gen-btn-group .gen-btn{position:absolute;top:13px;right:10px;padding:0;font-size:var(--font-size-sm);line-height:14px;border-radius:var(--radius-base);}
.gen-icon-btn,.modal-gen-btn{
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding:8px 7px;
    background:var(--color-green);
    color:var(--color-white);
    line-height:12px;
    transition: padding 0.3s ease;border-radius:100%;cursor:pointer;}
.gen-icon-btn i,.modal-gen-btn i{font-size:var(--font-size-xs);margin:1px 0 0;}

.gen-icon-btn span,.modal-gen-btn span {
    opacity: 0;
    display: none;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.gen-icon-btn:hover,.modal-gen-btn:hover {
    border-radius:25px;
   padding:8px 8px;
}

.gen-icon-btn:hover span,.modal-gen-btn:hover span {
    opacity: 1;
    display:inline-flex;
    transform: translateX(0);
}


.input-gen-btn-group .gen-btn{top:6px;}
.input-gen-btn-group .form-control{padding-right:125px;}
.add-more-btn,.append-location,.add-circle-btn{font-size:var(--font-size-base);display:flex;align-items:center;justify-content: center;text-align: center;min-width:42px;width:42px;height:42px;padding:0;}
.group-add-btn{margin-top:30px;}
.step-box-heading{font-size:var(--font-size-xl);margin-bottom:25px;cursor: pointer;display:flex;align-items: center;justify-content:flex-start;gap:10px;}
.select2-container .select2-selection--multiple {
    height: 42px;    
    height: auto;        
    padding: .375rem .75rem !important;
    line-height:25px;
    max-height:80px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    
}
.select2-container .select2-selection--multiple::-webkit-scrollbar {
    display: none !important; /* hide scrollbar in Webkit browsers */
}

/* Optional for Firefox */
.select2-container .select2-selection--multiple{
    scrollbar-width: none !important; /* hide scrollbar in Firefox */
}




.metrics-card {
    position: relative;
}

.dropdown-wrapper {
    margin-bottom: 15px;
}

.custome-card .dropdown-btn {
    background: #0d6f3f;        /* Green like screenshot */
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap:10px;
}

.custome-card .dropdown-btn:focus {
    outline: none;
}

.dropdown-menu {
    list-style: none;
    margin: 5px 0 0;
    padding: 8px 0;
    width: 180px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    position: absolute;
    display: none;
    z-index: 100;
}

.dropdown-menu li {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-menu li:hover {
    background: #f4f4f4;
}

.custome-card{padding:25px 25px;margin-bottom:20px;border:1px solid var(--color-border);background:var(--color-white);color:var(--color-dark-grey);}
.custome-card .card-title{font-size: var(--font-size-lg);margin-bottom:15px;color:var(--color-dark-grey);}

.tab-custom-card h3{padding:20px 20px;color:var(--color-dark-grey);}

.custome-card .data-card span{cursor:pointer;border:1px solid var(--color-border);padding:10px 20px;border-radius:25px;display:inline-flex;align-items: center;justify-content: center;gap:15px;}
.custome-card .highlight-item{text-align: left;margin-right:80px;margin-top:30px;}
.custome-card .highlight-item .number{font-size:var(--font-size-xl);font-weight:var(--font-weight-medium);margin-bottom:5px;}
.custome-card .item-text{color:var(--color-gray-400);}


.negative{font-size:var(--font-size-sm);color:var(--color-red);display:inline-flex;line-height:12px;gap:4px;}
.positive{font-size:var(--font-size-sm);color:var(--color-green);}

.analy-page-wrapper .card-tab-content{display:none;}
.analy-page-wrapper .card-tab-content.active{display:block;}

.card-tab li a{color:var(--color-dark-grey);text-decoration:none;font-size:var(--font-size-md);font-weight:var(--font-weight-regular);padding:20px 20px;display:block;}
.card-tab li a.active,.card-tab li a:hover{color:var(--color-green);border-bottom:2px solid var(--color-green);}
.card-tab li:first-child a.active{border-bottom-left-radius:5px;}

.card-header{background:none;}


.date-card {font-size: 16px;font-weight: bold;}

    /* Calendar Popup */
    .calendar-popup {
        position: absolute;
        top: 105%;
        left: 0;
        width: 320px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        display: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        color:#333;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        font-weight:var(--font-weight-medium);
        align-items: center;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
        text-align: center;
    }

    .calendar-grid div {
        padding: 6px;
        font-weight:var(--font-weight-medium) !important;
    }

    .day {
        padding: 8px;
        cursor: pointer;
        border-radius: 6px;
        transition: 0.2s;
    }

    .day:hover {
        background: #e6f5ff;
    }

     .calendar-popup .selected {
        background: #0073b1;
        color: white;
    }

    .range {
        background: #cfe8f6;
    }

     .calendar-popup .calendar-actions {
        margin-top: 12px;
        display: flex;
        justify-content: space-between;
    }

    .calendar-popup  .apply-btn, .calendar-popup .cancel-btn {
        padding: 6px 12px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        background:var(--color-green);
        color: var(--color-white);
    }

     .calendar-popup .cancel-btn {
        background:var(--color-gray-200);
        color:var(--color-dark-grey);
    }
      .calendar-popup.apply-btn {
        background:var(--color-green);
        color: #fff;
    }
     .calendar-popup .disabled-day {
        opacity: 0.3;        /* blur/ghost effect */
        filter: blur(1px);   /* slight blur */
        cursor: not-allowed; /* can't click */
        pointer-events: none;
    }

.transition{transition: transform 0.3s ease; }
.sidebar-main-content{margin-right:15px;}
.sidebar-w{min-width:220px;max-width:250px;padding-right:30px;padding-left:5px;}
.sidebar-r-b{border-right:1px solid var(--color-border);}
.sidebar-sticky-position{display:flex; flex-direction: column;justify-content: space-between;align-items:flex-start;height:calc(100vh - 60px);overflow-y:auto;position:sticky;top:62px;}
.sidebar-footer {
    margin-top: auto; /* ensures footer stays at bottom if flex fails */
    padding: 10px 5px;
    width: 100%;
    margin-bottom:10px;cursor:pointer;
}
.sidebar-footer a{display:flex;gap:10px;align-items: center;color:var(--color-dark-grey);}
/* Menu styling */
.sidebar-menu-list{width:100%;}
.sidebar-menu-list .menu-item{margin-bottom:10px;}
.sidebar-menu-list a.link-text {
    color: var(--color-dark-grey);
    display: block;
    padding: 10px 10px;
    border-radius: var(--radius-base);
    display:flex;
    gap:10px;
    align-items: center;
}

.sidebar-menu-list a.link-text span{font-weight:var(--font-weight-medium);}


.sidebar-menu-list a:hover{background:var(--color-light-grey);}

.sidebar-menu-list a.active {
    background-color: var(--color-gray-200);
    color: var(--color-dark-grey);
}

/* Logo */
.sidebar-logo {
    display: block;
    margin: 0 auto;
}


.header-lg-title{font-size: var(--font-size-2xl);font-weight:var(--font-weight-semibold);}
.cards-row{display:flex;align-items: center;justify-content: flex-start;gap:15px;}
.card-row-item:hover .image-hover {transform: scale(1.1);}
.cards-row .card-row-box,.card-add-row .card-row-box{min-width:175px;min-height:175px;background:var(--color-light-grey);border-radius:var(--radius-md);display:flex;align-items: center;justify-content: center;box-shadow: var(--shadow-md);margin-bottom:15px;overflow: hidden}
.card-add-row .card-row-box{min-width:150px;min-height:170px;margin-bottom:0}
.card-add-row .card-row-item .card-row-img{display:flex;align-items:center;justify-content: center;gap:10px;flex-direction:column;}
.card-add-row .circle-icon{width:36px;height:36px;}
.card-row-item:hover .card-row-box{background:var(--color-gray-200);}
.cards-row .card-row-img{width:80px;height:80px;object-fit: contain;}
.card-row-item h3{color:var(--color-dark-grey);font-size:var(--font-size-base);text-decoration:none;text-align:center;}
.card-row-titile h2{font-size:var(--font-size-lg);font-weight:var(--font-weight-medium);}
.card-row-scroll{
    display: flex;
    overflow-x: auto;     /* enables horizontal scroll */
    scrollbar-width:none;
    scroll-behavior: smooth;
    white-space: nowrap; 
    white-space: nowrap;
    flex-wrap: nowrap;          /* ✅ MUST be nowrap */
    gap: 20px;
    width:calc(100% - 30px); 
    margin:0 auto;  

}
.card-row-scroll > * {
    flex: 0 0 auto;             /* ✅ prevents shrinking */
}
.card-row-scroll::-webkit-scrollbar {
    display:none;
}

.card-row-scroll::-webkit-scrollbar-thumb {
    display:none;
}


.cards-row-scroll-wrapper {
    position: relative;
    flex:1;
    width:calc(100vh - 90px);
}

.cards-row-scroll-wrapper .scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    background:var(--color-green);
    color: #fff;
    border: none;
    width:32px;
    height:32px;
    display:flex;
    align-items: center;justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size:var(--font-size-sm);
    display: none; /* hidden by default */
}
.cards-row-scroll-wrapper .scroll-btn:hover{background:var(--color-dark-green);}

.cards-row-scroll-wrapper .prev-btn {
    left: 5px;
}

.cards-row-scroll-wrapper .next-btn {
    right: 0;
}



.sidebar-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 10px;
    border-radius:var(--radius-base);
}
.sidebar-dropdown-toggle .menu-icon-text{display:flex;align-items: center;gap:10px;}
.sidebar-dropdown-toggle:hover{background: var(--color-gray-200);color: var(--color-dark-grey);}

.menu-dropdown-list {
    list-style: none;
    padding-left: 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}


.menu-dropdown-list li a {
    margin:5px 0;
    padding: 12px 10px;
    color:var(--color-dark-grey);
    text-decoration: none;
    display:inline-flex;
    align-items: center;
    gap:10px;
    width:100%;
    border-radius: var(--radius-base);
}

.menu-dropdown-list li a.active {
    color: #333;
}

.dropdown-menu-item.active .sidebar-dropdown-toggle{background:var(--color-gray-200);}
.dropdown-menu-item.active .menu-dropdown-list {
    max-height: 300px;
    margin-top:5px;
    overflow-y:scroll;
}

.dropdown-menu-item .arrow {
    transition: transform .3s ease;
}

.dropdown-menu-item.active .arrow {
    transform: rotate(180deg);
}





/* .card-row-scroll::-webkit-scrollbar {
    height: 6px;
}

.card-row-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
} */



    

/* .media-upload { max-width: 980px; margin: 24px auto; font-family: system-ui, Arial; }
.section-title { font-size: 18px; margin-bottom: 12px; color: #222; }


.media-row { display: flex; gap: 18px; flex-wrap: wrap; }


.media-item {
  flex: 1 1 300px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  position: relative;
  min-height: 120px;
}


.media-label { font-weight: 600; color: #333; margin-bottom: 8px; }
.media-input { display:flex; align-items:center; gap:8px; }
.media-input input[type="file"] { display: inline-block; }
.media-hint { margin-left: 6px; color:#0d6efd; font-weight:600; }


.media-input-inline { display:flex; gap:8px; align-items:center; }
.media-input-inline .form-control { flex:1; }


.media-preview img { max-width: 100px; max-height: 60px; border-radius:6px; display:block; margin-top:10px; }
.screenshots-preview { display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.screenshots-preview .thumb {
  width: 90px; height: 70px; border-radius:8px; overflow:hidden; position:relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.screenshots-preview .thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.screenshots-preview .thumb .remove {
  position:absolute; top:6px; right:6px; background: rgba(0,0,0,0.45); color:#fff;
  border:none; border-radius:50%; width:22px; height:22px; display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:12px;
}

.video-list { margin-top:10px; display:flex; gap:8px; flex-direction:column; }
.video-item { display:flex; align-items:center; gap:10px; background:#f7f9fb; padding:8px 10px; border-radius:8px; }
.video-item a { color:#0d6efd; text-decoration:none; }
.video-item .remove-video { margin-left:auto; background:transparent; border:none; color:#888; cursor:pointer; }


@media (max-width:760px) {
  .media-row { flex-direction:column; }
} */


.f-social-link .social-link{color:var(--color-medium-grey);font-weight:var(--font-weight-regular);font-size:var(--font-size-base);text-decoration:none;}
.f-social-link .social-link:hover{color:var(--color-dark-grey);}
.s-link-bg{background:var(--remove-color);color:#fff !important;width:26px;height:26px;display:inline-flex;align-items: center;justify-content: center;}
.s-link-bg:hover{background:var(--remove-hover-color);}
.footer {
    padding:10px 0;
    color: var(--color-medium-dark-grey);
    border-top: 1px solid var(--color-border);
}
.footer .footer-content{padding:0 15px;}

.footer-top {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight:var(--font-weight-medium);
    color:var(--color-dark-grey);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 6px 0 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--color-medium-grey);
    opacity:1;
    font-size:var(--font-weight-regular);
}
.footer-col ul li a:hover{color:var(--color-dark-grey);}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    flex-wrap: wrap;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin-bottom:0;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-medium-grey);
}
.footer-links a:hover{color:var(--color-dark-grey);}



/*Home css*/
.container-fluid-pd-3{padding:0 30px;}
.waitlist{border:1px solid var(--color-border);border-radius:var(--radius-lg);width:auto;overflow:hidden;}
.circle-icon-w{min-width:42px;}
.default-logos-thumb .thumb-img{width:40px;height:auto;padding:5px 0;border-radius:var(--radius-base);}
.default-logos{margin-left:25px;}
.waitlist-text{margin-right:25px;color:var(--color-dark-grey);font-weight:var(--font-weight-medium);}
.home-feature-card .card{background:var(--color-white);}
.home-feature-card h3{font-size:var(--font-size-lg);color:var(--color-dark-grey);}
.home-business-btn{width:80%;margin:0 auto;}
.branding-marquee .logo-track img{width:51px;height:auto;border:1px solid var(--color-border) !important;border-radius:12px;}


.form-swiper-wrapper{width:100vh;flex:1;}
.form-swiper .swiper-wrapper{margin:0 50px;}
.fix-h3-height{height:30px;}


/* Scroll animation from right to left */
    @keyframes scroll-infinite {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Default hidden hover logos */
    .hover-logos {
        display: none;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

    /* Show hover logos on hover */
    .waitlist:hover .default-logos {
        display: none;
    }

    .waitlist:hover .hover-logos {
        display: flex;
        align-items: center;
    }

    /* Hide text on hover */
    .waitlist:hover .waitlist-text {
        display: none;
    }

    /* Logo track styling */
    .logo-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
    }

    /* Animate logos on hover */
    .waitlist:hover .logo-track {
        animation: scroll-infinite 25s linear infinite;
    }

    /* Hide text and remove border on hover */
    .waitlist:hover {
        border: none !important;
        box-shadow: none !important;
    }

.content-sections h1{font-size:var(--font-size-2xl);margin-bottom:0;}
.content-sections h2{font-size:var(--font-size-xl);margin-bottom:15px;font-weight:var(--font-weight-medium);}
.content-sections h3{font-size:var(--font-size-lg);margin-bottom:15px;font-weight: var(--font-weight-medium);}
.content-sections ul li{margin:0 0 15px;}
.content-sections p{line-height:1.6rem;}


/*===boost===*/

.list-scroll{max-height:82%;overflow-y: scroll;scroll-behavior:smooth;}
.form-row-slide{width:100vh;flex:1;overflow-x:scroll;scroll-behavior:smooth;}
.append-row-box{position:relative;min-width:250px;border:1px dashed var(--color-border);padding:15px 15px;border-radius:12px;margin-bottom:15px;}
.append-row-box.is-not-valid{border-color: var(--color-red);}
.form-row-slide .form-group:last-child{margin-bottom:0 !important;}
.form-group-label{font-size:var(--font-size-md);font-weight:var(--font-weight-medium);}
.append-row-box .append-remove-btn{position: absolute;right:5px;top:5px;width:32px;height:32px;}
.form-card{box-shadow: var(--shadow-lg);border:1px solid var(--color-border);width:100%;height:100%;min-height:220px;max-height:200px;padding:15px 15px;border-radius:var(--radius-base);}
.form-card.edit-active{
    border: 1px solid #28a745;
    background: #f3fff7;
}
.form-card.edit-active .form-control{background: #f3fff7;}
.form-card-edit-btn{background-color:var(--color-green);padding:5px 15px;color:#fff;border-radius:25px;font-size:13px;gap:5px !important;}
.form-card-edit-btn i{font-size:11px;}
.swiper-textarea-card{width:100%;min-height:200px;max-height:200px;overflow-y:auto;}
.swiper-textarea-card .form-control{border:none;width:100%;padding:0 5px;line-height:22px;}

.disable .form-card-header,
.disable .form-card-header * {
    pointer-events: auto !important;
}
.form-card-header .checkbox{width:18px;height:18px;margin-top:2px;}
.media-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 350px;
    border: 1px dashed var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:var(--color-grey-100);
}
.media-box .gen-icon-btn{position:absolute;top:10px;right:10px;}

.media-placeholder {
    color: var(--color-medium-grey);
    font-size: 14px;
    text-align: center;
}

.media-placeholder i{font-size:32px;}

.media-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal .media-box{max-width:350px;height:auto;aspect-ratio: 1 / 1; }
.image-upload-box{width:350px;height:350px;display:flex;align-items: center;justify-content: center;}
.modal-preview-section{width:100%;height:auto;object-fit: cover;}
#modal-image-preview{width:100%;height:100%;object-fit: cover;}

.media-remove,.media-remove2 {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--color-red);
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background 0.25s 
    ease, transform 0.25s 
    ease, box-shadow 0.25s 
    ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-remove:hover{background:var(--remove-hover-color);}


.image-grid {
    display: flex;
    gap:38px;
    flex-wrap: wrap;
    align-items: center;
}

.image-box {
    position: relative;
    width: 220px;
    border: 1px dashed var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    background:var(--color-grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-9-16 { aspect-ratio: 9 / 16; }

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

.form-payment{
    font-size: 0.95rem;
    width:60%;
    border:1px dashed var(--color-border);
    padding:15px 25px 0;
    border-radius:var(--radius-base);
}

.form-preview-img{border:1px dashed var(--color-border);padding:15px 15px;border-radius:var(--radius-base);object-fit:cover;width:100%;max-width:800px;}

.payment-summary .row {
  display: flex;
  justify-content: space-between;
  margin:0 0 30px;
  border-top: 1px dashed var(--color-border);
  padding-top:30px;
}
.payment-summary .row:first-child{border-top:none;}

.payment-summary .row span{width:auto;}

.payment-summary .total {
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.05rem;
}

.date-wrapper {
    position: relative;
}

.date-native {
    position: absolute;
    inset: 0;
    top: 32px;
    left: 0;
    width: 100%;
    height:100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
}

.date-display {
    position: relative;
    z-index: 1;
    background: #fff;
    pointer-events: none; /* 🔥 CRITICAL */
}


.targeting-step.disabled{opacity:.8;pointer-events:none;cursor: not-allowed;}

.agreement-box a{color:var(--color-green);}



.form-swiper-wrapper textarea {
    animation: fadeIn 0.25s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}



.markdown-preview h2{font-size:var(--font-size-lg);font-weight:var(--font-weight-medium);margin-bottom:10px;}
.markdown-preview h3{font-size: var(--font-size-base);font-weight:var(--font-weight-medium);margin-bottom:10px;}
.markdown-preview {
    line-height: 1.6;
    margin-bottom:15px;
}
.markdown-preview:focus{outline: none;}

.markdown-preview table {
    width: 100%;
    border-collapse: collapse;
    
}

.markdown-preview li{margin-bottom:5px;}

.markdown-preview th,
.markdown-preview td {
    border: 1px solid var(--color-border);
    padding: 6px;
    font-size: var(--font-size-base);
}

.markdown-preview th{font-weight: var(--font-weight-medium);}

.text-blur-loading {
    filter: blur(6px);
    transition: filter 0.4s ease;
}

.text-blur-loading.loaded {
    filter: blur(0);
}

.modal-btn{font-size:var(--font-size-base);font-weight:var(--font-weight-medium);}


#loaderModal .loader-circle {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#loaderModal .dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-green);
    border-radius: 50%;
    animation: dotMove 1.4s infinite ease-in-out;
}

#loaderModal .dot-1 { animation-delay: 0s; }
#loaderModal .dot-2 { animation-delay: 0.2s; }
#loaderModal .dot-3 { animation-delay: 0.4s; }

@keyframes dotMove {
    0% { transform: translateX(10px); opacity: 0.3; }
    50% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-10px); opacity: 0.3; }
}

#loaderModal .loader-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark-grey);
    transition: opacity 0.3s ease;
}

.response-message.danger,.responsehtml, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
}
.main-content{min-height:85vh;}

.content {
  flex: 1; /* pushes footer to bottom */
}-message.text-danger{color: var(--color-red) !important;text-align: center;}






@media (max-width:992px) {
    .custome-card .highlight-item{margin-right:0;}
    .custom-card-content{gap:0.75rem !important;justify-content:space-between;}
    .tc-grid{grid-template-columns: repeat(2, 1fr);}
}


@media (max-width:767px) {
    .header,.footer .footer-content{padding-left:0;padding-right:0;}
    .custome-card{padding:10px 10px;}
    .tc-grid a{padding:0 10px;}
    .card-tab{gap:0.75rem !important;display:flex;justify-content:space-between;}
    .card-tab li a{font-size:var(--font-size-base);}
    .tc-grid{grid-template-columns: repeat(1, 1fr);}
    .tc-icon{width:55px;height:55px;}
    .tc-key-list{gap:.3rem !important;font-size:var(--font-size-sm);}
    .home-feature-card,.sm-flex-column{flex-direction: column;gap:15px !important;}
    .home-business-btn{width:100%;}
    .home-bb-text br,.center-heading h2 br{display:none;}
    .home-bb-text p{text-align: center;}
    .divider{width:100%;}

}