/* =====================================================
   Webtrendz Custom Theme Stylesheet
   Matches WordPress Hosbit design
   ===================================================== */

/* --- Google Fonts are loaded in head.tpl --- */

/* === CSS Variables === */
:root {
    --wt-purple: #7111a2;
    --wt-purple-dark: #5a0d82;
    --wt-gradient-start: #fb6d62;
    --wt-gradient-end: #ffab6b;
    --wt-heading: #213e6e;
    --wt-body-text: #616c7f;
    --wt-green: #0cb885;
    --wt-footer-bg: #1f2126;
    --wt-footer-text: #a1a7b3;
    --wt-hero-gradient-start: #3b1d8e;
    --wt-hero-gradient-end: #7111a2;
    --wt-light-bg: #f8f9fb;
    --wt-border: #e8ecf1;
}

/* === Base / Typography === */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--wt-body-text);
    line-height: 1.7;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: var(--wt-heading);
}

a {
    color: var(--wt-purple);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--wt-gradient-start);
    text-decoration: none;
}

/* === Buttons === */
.btn-gradient {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gradient:hover,
.btn-gradient:focus {
    color: #fff;
    box-shadow: 0 8px 25px rgba(251, 109, 98, 0.4);
    transform: translateY(-2px);
}

.btn-gradient-sm {
    padding: 8px 24px;
    font-size: 13px;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--wt-purple);
}

/* === Top Bar === */
.wt-topbar {
    background: var(--wt-purple);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.wt-topbar a {
    color: #fff;
    opacity: 0.9;
}

.wt-topbar a:hover {
    opacity: 1;
    color: #fff;
}

.wt-topbar .topbar-left {
    float: left;
}

.wt-topbar .topbar-right {
    float: right;
}

.wt-topbar .topbar-right a {
    margin-left: 20px;
}

.wt-topbar .topbar-right i {
    margin-right: 5px;
}

/* === Main Navigation === */
.wt-navbar {
    background: #fff;
    border-bottom: none;
    padding: 0;
    z-index: 1000;
    position: relative;
    margin-bottom: 0;
}

.wt-navbar .container {
    display: flex;
    align-items: center;
}

.wt-navbar .collapse.navbar-collapse {
    display: flex !important;
    align-items: center;
    flex: 1;
}

.wt-navbar .navbar-header {
    float: none;
    margin-right: 0;
}

.wt-navbar .navbar-brand {
    padding: 10px 0;
    height: auto;
    margin-right: 0;
    margin-left: 0;
}

.wt-navbar .navbar-brand img {
    max-height: 80px;
}

.wt-navbar .navbar-brand .logo-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--wt-heading);
    text-decoration: none;
}

.wt-navbar .nav > li > a {
    color: var(--wt-heading);
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px;
    transition: color 0.3s ease;
    line-height: 1;
}

.wt-navbar .nav > li > a:hover,
.wt-navbar .nav > li > a:focus,
.wt-navbar .nav > li.active > a {
    color: var(--wt-gradient-start);
    background: transparent;
}

.wt-navbar .nav > li.dropdown > a .caret {
    margin-left: 3px;
}

.wt-navbar .navbar-nav {
    display: flex;
    align-items: center;
}

.wt-navbar .navbar-nav.navbar-right {
    margin-left: auto;
}

.wt-navbar .navbar-right .btn-login {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
}

.wt-navbar .navbar-right .btn-login:hover {
    box-shadow: 0 5px 15px rgba(251, 109, 98, 0.4);
}

.wt-navbar .navbar-toggle {
    border-color: var(--wt-heading);
    margin-top: 15px;
}

.wt-navbar .navbar-toggle .icon-bar {
    background-color: var(--wt-heading);
}

/* Dropdown menus */
.wt-navbar .dropdown-menu {
    border-radius: 8px;
    border: 1px solid var(--wt-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 5px;
}

.wt-navbar .dropdown-menu > li > a {
    padding: 9px 20px;
    font-size: 14px;
    color: var(--wt-body-text);
    transition: all 0.15s ease;
}

.wt-navbar .dropdown-menu > li > a:hover {
    background: var(--wt-light-bg);
    color: var(--wt-gradient-start);
}

.wt-navbar .dropdown-menu > li > a > i.fa-fw {
    margin-right: 8px;
    color: var(--wt-purple);
    width: 18px;
    text-align: center;
}

.wt-navbar .dropdown-menu > li > a:hover > i.fa-fw {
    color: var(--wt-gradient-start);
}

.wt-navbar .dropdown-menu .divider {
    margin: 6px 0;
    border-top: 1px solid var(--wt-border);
}

/* === Hero Section === */
.wt-hero {
    background: linear-gradient(135deg, var(--wt-hero-gradient-start) 0%, var(--wt-hero-gradient-end) 100%);
    padding: 100px 0 120px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.wt-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,117.3C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.wt-hero .container {
    position: relative;
    z-index: 1;
}

.wt-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.wt-hero h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.wt-hero p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 550px;
}

.wt-hero .btn-gradient {
    font-size: 16px;
    padding: 14px 40px;
}

/* Hero Banner Image */
.hero-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-img {
    max-width: 100%;
    height: auto;
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* === Section Titles === */
.wt-section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-label {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--wt-gradient-start);
    background: rgba(251, 109, 98, 0.08);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.wt-section-title h2 {
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
}

.title-accent {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.title-accent span {
    display: block;
    width: 50px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
}

.wt-section-title p {
    font-size: 16px;
    color: var(--wt-body-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Services Section === */
.wt-services {
    padding: 90px 0;
    background: #fff;
}

.wt-service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
    border: none;
    margin-bottom: 30px;
    background: #fff;
}

.wt-service-card:hover {
    transform: translateY(-5px);
}

/* Orbit icon container */
.icon-orbit {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #dde2ea;
    animation: spin-slow 20s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border-radius: 50%;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    animation: spin-dot 20s linear infinite;
    transform-origin: 50% calc(80px + 7px);
}

.icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(251, 109, 98, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wt-service-card:hover .icon-circle {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 15px 40px rgba(251, 109, 98, 0.45);
}

.icon-circle i {
    font-size: 36px;
    color: #fff;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-dot {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

/* Title dashes */
.title-dashes {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 18px;
}

.title-dashes span {
    display: block;
    width: 12px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
}

.wt-service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.wt-service-card p {
    font-size: 15px;
    color: var(--wt-body-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--wt-gradient-start);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-link:hover {
    color: var(--wt-gradient-end);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Scroll-in animations */
.wt-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.wt-animate.wt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Domain Search Section === */
.wt-domain-search {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0 89px;
}

.wt-domain-title {
    margin-bottom: 35px;
    padding-bottom: 0;
}

.wt-domain-title h2 {
    color: #fff;
    font-size: 36px;
}

.domain-label {
    display: inline-block;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.domain-label img {
    margin-right: 6px;
    vertical-align: middle;
}

/* Domain search form - exact WordPress match */
.domain-search-form {
    display: flex;
    align-items: center;
    background: rgba(169, 80, 14, 0.431);
    box-shadow: 0px 3px 7.44px 0.56px rgba(0, 0, 0, 0.05);
    border-radius: 60px;
    padding: 18px 18px;
    margin-bottom: 35px;
    gap: 12px;
}

.ds-form-grp {
    position: relative;
    width: 45%;
    flex: 0 0 45%;
}

.ds-form-grp input {
    width: 100%;
    border: none;
    background: #fff;
    padding: 20px 30px 20px 52px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    color: #555;
    height: auto;
}

.ds-form-grp input::placeholder {
    color: #a9a9a9;
    font-size: 14px;
    font-weight: 500;
}

.ds-form-grp input:focus {
    outline: none;
    box-shadow: none;
}

.ds-form-grp i {
    position: absolute;
    top: 24px;
    color: #a9a9a9;
    font-size: 14px;
    left: 26px;
    line-height: 1;
}

/* TLD select dropdown */
.ds-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a9a9a9' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 25px center;
    border-radius: 30px;
    padding: 20px 55px 20px 25px;
    color: #a9a9a9;
    font-size: 14px;
    font-weight: 500;
    min-height: 61px;
    width: 25%;
    flex: 0 0 25%;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
}

.ds-select:focus {
    outline: none;
}

/* Search button */
.ds-search-btn {
    flex-grow: 1;
    padding: 20px 25px;
    height: 61px;
    text-transform: capitalize;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.ds-search-btn:hover {
    background: linear-gradient(135deg, var(--wt-gradient-end), var(--wt-gradient-start));
    color: #fff;
    border-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Domain TLD price list */
.domain-list {
    padding-top: 10px;
}

.domain-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.domain-list ul li {
    color: #fff;
    font-weight: 600;
    padding: 0 30px;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    line-height: 1;
}

.domain-list ul li:last-child {
    border-right: none;
}

.domain-list ul li strong {
    font-weight: 700;
    margin-right: 10px;
}

.domain-list ul li span {
    font-weight: 400;
    font-size: 14px;
    opacity: 0.85;
}

/* === Pricing Section === */
.wt-pricing {
    padding: 100px 0 70px;
    background: #f7f8fa;
    position: relative;
}

/* Pricing Tabs */
.pricing-tabs {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-tabs .nav-tabs {
    border-bottom: none;
    display: inline-flex;
    box-shadow: 0px 3px 14.88px 1.12px rgba(156, 143, 141, 0.16);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.pricing-tabs .nav-tabs > li {
    float: none;
    margin: 0;
}

.pricing-tabs .nav-tabs > li > a {
    border: none;
    border-radius: 50px;
    padding: 16px 35px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--wt-heading);
    margin: 0;
    transition: all 0.3s ease;
}

.pricing-tabs .nav-tabs > li > a:hover {
    border: none;
    background: transparent;
    color: var(--wt-gradient-start);
}

.pricing-tabs .nav-tabs > li.active > a,
.pricing-tabs .nav-tabs > li.active > a:hover,
.pricing-tabs .nav-tabs > li.active > a:focus {
    border: none;
    color: #fff;
    background-image: linear-gradient(to right, #fb6d62 0%, #ffab6b 50%, #fb6d62 100%);
    background-size: 200% auto;
    box-shadow: 0px 3px 7.44px 0.56px rgba(0, 0, 0, 0.08);
}

/* Pricing Box */
.pricing-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 1px 12.09px 0.91px rgba(114, 113, 113, 0.05);
    padding: 40px 48px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-box:hover {
    box-shadow: 0px 10px 30px rgba(114, 113, 113, 0.15);
    transform: translateY(-5px);
}

.pricing-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 235px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pricing-box.shape-1::before {
    background-image: url('../img/pricing_box_shape01.png');
}

.pricing-box.shape-2::before {
    background-image: url('../img/pricing_box_shape02.png');
    height: 205px;
}

.pricing-box.shape-3::before {
    background-image: url('../img/pricing_box_shape03.png');
    height: 205px;
}

/* Pricing Head */
.pricing-head {
    margin-bottom: 20px;
}

.pricing-head h6 {
    line-height: 1;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-icon {
    height: 60px;
    width: 60px;
    margin: 35px auto 60px;
    line-height: 60px;
}

.pricing-icon i {
    font-size: 40px;
    color: #fff;
}

/* Pricing Features List */
.pricing-list {
    margin-bottom: 30px;
}

.pricing-list h5 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(21deg, rgb(251,109,98) 0%, rgb(255,171,107) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.pricing-list h5::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60%;
    height: 3px;
    background: linear-gradient(21deg, rgb(251,109,98) 0%, rgb(255,171,107) 100%);
}

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

.pricing-list ul li {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #8b8a8b;
    padding: 12px 0;
    border-bottom: 1px dashed #d2d2d2;
}

.pricing-list ul li:last-child {
    border-bottom: none;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 25px;
}

.pricing-price h2 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
    color: var(--wt-heading);
}

.pricing-price h2 span {
    font-size: 14px;
    font-weight: 400;
    color: #a4a7a6;
}

/* Pricing Button */
.pricing-btn {
    margin-top: 5px;
}

.pricing-btn .btn-gradient {
    padding: 12px 30px;
    font-size: 13px;
}

/* === Exclusive Services / Features Section === */
.wt-exclusive {
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    position: relative;
}

.wt-exclusive-title {
    margin-bottom: 50px;
}

.wt-exclusive-title h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
}

.exclusive-label {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 12px;
}

.title-dashes-light span {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
}

/* Exclusive Cards */
.exclusive-card {
    text-align: center;
    padding: 68px 40px 50px;
    background: #562eb7;
    border-radius: 8px;
    box-shadow: 0px 3px 9.3px 0.7px rgba(53, 18, 136, 0.17);
    position: relative;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.exclusive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(53, 18, 136, 0.3);
}

/* Icon orbit */
.exclusive-icon-wrap {
    position: relative;
    width: 122px;
    height: 122px;
    margin: 0 auto 40px;
}

.exclusive-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: spin-slow 15s linear infinite;
}

.exclusive-orbit-dot {
    position: absolute;
    width: 18px;
    height: 14px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border-radius: 30px;
    top: 8px;
    right: -2px;
    transform: rotate(-28deg);
    animation: spin-dot 15s linear infinite;
    transform-origin: 50% calc(61px);
    transition: 0.3s linear;
}

.exclusive-card:hover .exclusive-orbit-dot {
    box-shadow: 0 0 10px rgba(251, 109, 98, 0.5);
}

.exclusive-icon-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 81px;
    height: 81px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(251, 109, 98, 0.35);
    transition: transform 0.3s ease;
}

.exclusive-card:hover .exclusive-icon-circle {
    transform: translate(-50%, -50%) scale(1.06);
}

.exclusive-icon-circle i {
    font-size: 32px;
    color: #fff;
}

.exclusive-card h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    padding-bottom: 12px;
}

.exclusive-card .title-dashes {
    margin-bottom: 20px;
}

.exclusive-card p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 25px;
}

.exclusive-card .btn-gradient-sm {
    font-size: 13px;
    font-weight: 700;
    padding: 13px 36px;
}

/* === FAQ Section === */
.wt-faq {
    padding: 90px 0;
    background: #fff;
}

.faq-image {
    padding-right: 20px;
}

.faq-image img {
    max-width: 100%;
    height: auto;
}

.faq-content {
    padding-left: 15px;
}

.faq-label {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wt-gradient-start);
    margin-bottom: 10px;
}

.faq-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--wt-heading);
    margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-set {
    margin-bottom: 16px;
}

.faq-set:last-child {
    margin-bottom: 0;
}

.faq-toggle {
    display: block;
    border: 1px solid #ebebeb;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #586c8d;
    position: relative;
    padding: 19px 80px 19px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    text-decoration: none;
    color: #586c8d;
}

.faq-toggle.active {
    color: #fff;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border-color: var(--wt-gradient-start);
}

.faq-toggle.active:hover {
    color: #fff;
}

.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 109, 98, 0.15);
    border-radius: 4px;
    color: var(--wt-gradient-start);
    font-size: 14px;
}

.faq-toggle.active .faq-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.faq-answer {
    display: none;
    margin: 20px 25px 30px 33px;
    padding: 0 0 0 15px;
    border-left: 2px solid #e9f1f4;
}

.faq-answer p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--wt-body-text);
    line-height: 1.8;
    font-size: 14px;
}

/* === Package Pricing Comparison === */
.wt-pack-pricing {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

.pack-pricing-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 7.44px 0.56px rgba(244, 229, 192, 0.11);
    padding: 40px 48px;
    overflow-x: auto;
}

/* Table */
.pack-table {
    width: 100%;
    margin-bottom: 0;
    border: none;
}

.pack-table thead th {
    border: none;
    vertical-align: middle;
    padding: 25px 20px 30px;
    text-align: center;
}

.pack-table thead th.pack-head-info {
    text-align: left;
    width: 30%;
}

.pack-table thead th.pack-plan-col {
    width: 23.3%;
}

/* Head info column */
.pack-head-icon {
    font-size: 40px;
    line-height: 1;
    background-image: linear-gradient(to right, rgb(251,109,98) 20%, rgb(255,171,107) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: inline-block;
}

.pack-head-title {
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--wt-heading);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Toggle switch */
.pricing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-label {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a4a7a6;
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active-label {
    color: var(--wt-heading);
}

.toggle-switch {
    width: 50px;
    height: 24px;
    background: linear-gradient(to right, #fb6d62, #ffab6b);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
}

.toggle-knob {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.3s ease;
}

.toggle-switch.active .toggle-knob {
    left: 29px;
}

/* Plan columns */
.pack-plan-name {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fd7a3a;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pack-plan-offer {
    display: block;
    font-size: 12px;
    color: #a4a7a6;
    margin-bottom: 12px;
}

.pack-price {
    font-family: 'Rubik', sans-serif;
    font-size: 34px;
    font-weight: 500;
    color: var(--wt-heading);
    margin-bottom: 15px;
    line-height: 1;
}

/* Toggle price visibility */
.yearly-price {
    display: none;
}

.pricing-col.show-yearly .monthly-price {
    display: none;
}

.pricing-col.show-yearly .yearly-price {
    display: block;
}

/* Table body */
.pack-table tbody th,
.pack-table tbody td {
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    color: #a4a7a6;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
}

.pack-table tbody th {
    text-align: left;
    color: var(--wt-heading);
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
}

.pack-table tbody tr:hover {
    background: #fafbfc;
}

.pack-check {
    color: var(--wt-green);
    font-size: 16px;
}

.pack-cross {
    color: #ccc;
    font-size: 16px;
}

/* === Brand Logos Carousel === */
.wt-brand-area.gradient-bg {
    padding: 60px 0;
    background: #fff;
    border-top: none;
    overflow: hidden;
}

.brand-active {
    margin: 0;
}

.brand-slide {
    padding: 0 30px;
}

.brand-item {
    display: flex !important;
    align-items: center;
    min-height: 100px;
    justify-content: center;
}

.brand-item img {
    display: inline-block;
    max-width: 160px;
    max-height: 80px;
    opacity: 1;
    transition: transform 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* Slick carousel overrides for brand area */
.brand-active .slick-slide {
    outline: none;
}

.brand-active .slick-track {
    display: flex;
    align-items: center;
}

.brand-active .slick-list {
    overflow: hidden;
}

/* === Footer === */
.wt-footer {
    background: var(--wt-footer-bg);
    color: var(--wt-footer-text);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.wt-footer-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    opacity: 0.06;
}

.wt-footer-overlay img {
    max-width: 300px;
}

.fw-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--wt-gradient-start);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.wt-footer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.wt-footer ul li {
    margin-bottom: 12px;
}

.wt-footer ul li a {
    color: var(--wt-footer-text);
    font-size: 14px;
    transition: color 0.3s ease;
}

.wt-footer ul li a:hover {
    color: #fd7a3a;
}

/* Hide WHMCS "Powered by" branding */
p[style*="text-align:center"] a[href*="whmcs.com"] {
    display: none !important;
}
p[style*="text-align:center"]:has(a[href*="whmcs.com"]) {
    display: none !important;
}

/* Copyright Bar */
.wt-copyright {
    border-top: 1px solid #2c2f36;
    background: var(--wt-footer-bg);
    padding: 20px 0;
    margin-top: 30px;
}

.copyright-payment {
    margin-bottom: 5px;
}

.copyright-payment img {
    max-height: 35px;
}

.copyright-social {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 5px;
}

.copyright-social a {
    font-size: 18px;
    color: #8c8c8c;
    transition: color 0.3s ease;
}

.copyright-social a:hover {
    color: #fd7a3a;
}

.copyright-text {
    margin: 0;
    font-size: 13px;
    color: #8c8c8c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 5px;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(251, 109, 98, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 109, 98, 0.5);
}

/* === Override default WHMCS six theme styles === */

/* Hide default header section */
#header {
    display: none;
}

/* Hide default main-menu */
#main-menu {
    display: none;
}

/* Hide default home-banner */
#home-banner {
    display: none;
}

/* Hide default home-shortcuts */
.home-shortcuts {
    display: none;
}

/* Hide default footer section */
#footer {
    display: none;
}

/* Client area adjustments */
#main-body {
    min-height: 60vh;
}

/* Sidebar styling */
#main-body .sidebar .panel {
    border-radius: 8px;
    border: 1px solid var(--wt-border);
}

#main-body .sidebar .panel-heading {
    background: var(--wt-light-bg);
    border-radius: 8px 8px 0 0;
}

#main-body .sidebar .list-group-item {
    border-left: none;
    border-right: none;
    transition: background 0.2s ease;
}

#main-body .sidebar .list-group-item:hover {
    background: var(--wt-light-bg);
    color: var(--wt-purple);
}

/* Fix store page layout when sidebar shows */
.product-selection-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding-top: 10px;
    overflow-y: auto;
}

/* Ensure main content doesn't overflow */
#main-body .main-content {
    overflow-x: hidden;
}

/* Override panel styling */
.panel-default > .panel-heading {
    background-color: var(--wt-light-bg);
}

.panel-primary > .panel-heading {
    background-color: var(--wt-purple);
    border-color: var(--wt-purple);
}

/* Override primary button */
.btn-primary {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border: none;
    border-radius: 4px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(135deg, #e85e53, #f09a5c);
    border: none;
    box-shadow: 0 4px 12px rgba(251, 109, 98, 0.3);
}

/* Link color overrides */
a {
    color: var(--wt-purple);
}

a:hover,
a:focus {
    color: var(--wt-gradient-start);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding-left: 0;
}

/* =====================================================
   CLIENT AREA STYLING
   ===================================================== */

/* --- Main Body Container --- */
#main-body {
    padding-top: 30px;
    padding-bottom: 40px;
}

#main-body .container {
    font-family: 'Roboto', sans-serif;
}

/* --- Page Headers --- */
#main-body h1,
#main-body h2,
#main-body h3,
#main-body h4 {
    font-family: 'Rubik', sans-serif;
    color: var(--wt-heading);
}

.header-lined {
    border-bottom-color: var(--wt-border);
    padding-bottom: 12px;
    margin-bottom: 25px;
}

/* --- Dashboard Tiles --- */
.tile {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.tile .highlight {
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile .highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tile .highlight.bg-color-blue {
    background: linear-gradient(135deg, #3b1d8e, var(--wt-purple)) !important;
}

.tile .highlight.bg-color-green {
    background: linear-gradient(135deg, #08976b, var(--wt-green)) !important;
}

.tile .highlight.bg-color-gold {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end)) !important;
}

.tile .highlight.bg-color-red {
    background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
}

.tile .icon i {
    opacity: 0.2;
}

.tile .stat {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
}

.tile .title {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

/* --- Panels --- */
.panel {
    border-radius: 8px;
    border: 1px solid var(--wt-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.panel-heading {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-radius: 8px 8px 0 0 !important;
}

.panel-default > .panel-heading {
    background: var(--wt-light-bg);
    color: var(--wt-heading);
    border-bottom: 1px solid var(--wt-border);
}

.panel-default {
    border-color: var(--wt-border);
}

/* Panel accent colors */
.panel-accent-blue {
    border-top: 3px solid var(--wt-purple) !important;
}

.panel-accent-green {
    border-top: 3px solid var(--wt-green) !important;
}

.panel-accent-gold,
.panel-accent-orange {
    border-top: 3px solid var(--wt-gradient-start) !important;
}

.panel-accent-red {
    border-top: 3px solid #e74c3c !important;
}

.panel-footer {
    background: var(--wt-light-bg);
    border-top: 1px solid var(--wt-border);
}

/* --- Forms --- */
.form-control {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    border: 1px solid var(--wt-border);
    border-radius: 6px;
    padding: 10px 14px;
    height: auto;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--wt-purple);
    box-shadow: 0 0 0 3px rgba(113, 17, 162, 0.1);
    outline: none;
}

.form-control::-webkit-input-placeholder { color: #aab0ba; }
.form-control::-moz-placeholder { color: #aab0ba; }
.form-control:-ms-input-placeholder { color: #aab0ba; }

label,
.control-label {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--wt-heading);
    margin-bottom: 6px;
}

select.form-control {
    cursor: pointer;
}

/* --- Buttons --- */
.btn {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
}

.btn-default {
    background: #fff;
    border: 1px solid var(--wt-border);
    color: var(--wt-heading);
}

.btn-default:hover,
.btn-default:focus {
    background: var(--wt-light-bg);
    border-color: #ccc;
    color: var(--wt-purple);
}

.btn-success {
    background: var(--wt-green);
    border: none;
    color: #fff;
}

.btn-success:hover,
.btn-success:focus {
    background: #0aa577;
    box-shadow: 0 3px 10px rgba(12, 184, 133, 0.3);
}

.btn-danger {
    background: #e74c3c;
    border: none;
}

.btn-danger:hover,
.btn-danger:focus {
    background: #c0392b;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.btn-info {
    background: var(--wt-purple);
    border: none;
    color: #fff;
}

.btn-info:hover,
.btn-info:focus {
    background: var(--wt-purple-dark);
    box-shadow: 0 3px 10px rgba(113, 17, 162, 0.3);
}

/* --- Tables (DataTables, service list, tickets) --- */
.table {
    font-family: 'Roboto', sans-serif;
}

.table > thead > tr > th {
    background: var(--wt-light-bg);
    color: var(--wt-heading);
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--wt-border);
    padding: 12px 15px;
}

.table > tbody > tr > td {
    padding: 12px 15px;
    vertical-align: middle;
    border-top: 1px solid #f0f2f5;
    color: var(--wt-body-text);
    font-size: 14px;
}

.table > tbody > tr:hover > td {
    background: #f8f5fc;
}

.table-list > tbody > tr {
    cursor: pointer;
    transition: background 0.15s ease;
}

/* --- Status Labels --- */
.label {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.label-success,
.label.status-active {
    background: var(--wt-green) !important;
    color: #fff !important;
    border-color: var(--wt-green) !important;
}

.label-danger,
.label.status-cancelled,
.label.status-terminated {
    background: #e74c3c !important;
    color: #fff !important;
    border-color: #e74c3c !important;
}

.label-warning,
.label.status-pending,
.label.status-suspended {
    background: var(--wt-gradient-start) !important;
    color: #fff !important;
    border-color: var(--wt-gradient-start) !important;
}

.label-info {
    background: var(--wt-purple) !important;
    color: #fff !important;
}

.label-default {
    background: #8b95a5 !important;
    color: #fff !important;
}

/* --- Alerts --- */
.alert {
    border-radius: 8px;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 15px 20px;
}

.alert-success {
    background: #e8f8f2;
    color: #08784f;
    border-left: 4px solid var(--wt-green);
}

.alert-danger {
    background: #fdecea;
    color: #a71d2a;
    border-left: 4px solid #e74c3c;
}

.alert-warning {
    background: #fff5ec;
    color: #8a4500;
    border-left: 4px solid var(--wt-gradient-start);
}

.alert-info {
    background: #f0e8f7;
    color: #4a1170;
    border-left: 4px solid var(--wt-purple);
}

/* --- Login Page --- */
.logincontainer {
    max-width: 450px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.logincontainer h2 {
    font-family: 'Rubik', sans-serif;
    color: var(--wt-heading);
    text-align: center;
    margin-bottom: 30px;
}

.logincontainer .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 50px;
    margin-top: 10px;
}

.logincontainer .btn-default {
    border: none;
    color: var(--wt-purple);
    background: transparent;
    font-size: 13px;
}

.logincontainer .btn-default:hover {
    color: var(--wt-gradient-start);
    background: transparent;
}

/* --- Knowledge Base Search --- */
.home-kb-search .form-control {
    border-radius: 50px;
    padding: 14px 25px;
    font-size: 15px;
    border: 2px solid var(--wt-border);
}

.home-kb-search .form-control:focus {
    border-color: var(--wt-purple);
}

/* --- Pagination --- */
.pagination > li > a,
.pagination > li > span {
    color: var(--wt-heading);
    border-color: var(--wt-border);
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 8px 14px;
    margin: 0 2px;
    border-radius: 6px !important;
    transition: all 0.2s ease;
}

.pagination > li > a:hover {
    background: var(--wt-light-bg);
    color: var(--wt-purple);
    border-color: var(--wt-purple);
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border-color: transparent;
    color: #fff;
}

/* --- Badges --- */
.badge {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--wt-purple);
}

/* --- List Groups (sidebar, panels) --- */
.list-group-item {
    border-color: #f0f2f5;
    padding: 12px 18px;
    font-size: 14px;
    transition: all 0.15s ease;
}

.list-group-item:hover {
    background: var(--wt-light-bg);
    color: var(--wt-purple);
}

.list-group-item.active,
.list-group-item.active:hover {
    background: var(--wt-purple);
    border-color: var(--wt-purple);
    color: #fff;
}

/* --- Announcements --- */
.announcement-single {
    background: #fff;
    border: 1px solid var(--wt-border);
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s ease;
}

.announcement-single:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.announcement-single .title {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--wt-heading);
}

.announcement-single .title:hover {
    color: var(--wt-purple);
}

.announcement-single .article-items {
    color: #aab0ba;
    font-size: 12px;
    margin-top: 12px;
}

.announcement-single .label-warning {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end)) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
}

/* --- Support Tickets --- */
.ticket-number {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--wt-purple);
}

.ticket-subject {
    font-weight: 500;
    color: var(--wt-heading);
}

.ticket-subject.unread {
    font-weight: 700;
}

/* --- Invoices --- */
.invoice-header {
    border-bottom: 3px solid var(--wt-purple);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* --- Modal Styling --- */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.modal-header {
    background: var(--wt-light-bg);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid var(--wt-border);
    padding: 18px 25px;
}

.modal-header .modal-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--wt-heading);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: 1px solid var(--wt-border);
    padding: 15px 25px;
}

/* --- Tabs (client area) --- */
.nav-tabs {
    border-bottom: 2px solid var(--wt-border);
}

.nav-tabs > li > a {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--wt-body-text);
    border: none;
    padding: 12px 20px;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.nav-tabs > li > a:hover {
    border-color: transparent;
    border-bottom: 2px solid #ccc;
    background: transparent;
    color: var(--wt-purple);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
    border-bottom: 2px solid var(--wt-purple);
    color: var(--wt-purple);
    background: transparent;
    font-weight: 600;
}

/* --- Well (search boxes, info areas) --- */
.well {
    background: var(--wt-light-bg);
    border: 1px solid var(--wt-border);
    border-radius: 8px;
    box-shadow: none;
}

/* --- Loading Spinner --- */
#tableLoading i,
.fa-spinner {
    color: var(--wt-purple);
}

/* --- Cart / Order pages --- */
.order-summary {
    border-radius: 8px;
}

.order-summary .panel-heading {
    background: var(--wt-purple);
    color: #fff;
}

/* === Error Pages (404, 429, etc.) === */
.wt-error-page {
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.wt-error-code {
    font-family: 'Rubik', sans-serif;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wt-error-page h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 30px;
    color: var(--wt-heading);
    margin-bottom: 15px;
}

.wt-error-desc {
    font-size: 16px;
    color: var(--wt-body-text);
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto 30px;
}

.wt-error-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-outline-purple {
    background: transparent;
    color: var(--wt-purple);
    border: 2px solid var(--wt-purple);
    border-radius: 50px;
    padding: 12px 30px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-purple:hover {
    background: var(--wt-purple);
    color: #fff;
}

@media (max-width: 480px) {
    .wt-error-code {
        font-size: 80px;
    }
    .wt-error-page h1 {
        font-size: 22px;
    }
    .wt-error-page {
        padding: 50px 15px;
    }
}

/* === Responsive === */
/* ======================================
   RESPONSIVE / MOBILE STYLES
   ====================================== */

/* --- Tablet (max-width: 991px) --- */
@media (max-width: 991px) {
    /* Navbar: restore Bootstrap collapse behavior */
    .wt-navbar .container {
        display: block;
    }

    .wt-navbar .collapse.navbar-collapse {
        display: none !important;
        flex: none;
        overflow-y: auto;
        max-height: 400px;
        border-top: 1px solid var(--wt-border);
        padding: 10px 0;
    }

    .wt-navbar .collapse.navbar-collapse.in {
        display: block !important;
    }

    .wt-navbar .navbar-nav {
        display: block;
        float: none !important;
        margin: 0;
    }

    .wt-navbar .navbar-nav.navbar-right {
        margin-left: 0;
        border-top: 1px solid var(--wt-border);
        padding-top: 10px;
        margin-top: 10px;
    }

    .wt-navbar .nav > li {
        display: block;
    }

    .wt-navbar .nav > li > a {
        padding: 12px 15px;
        display: block;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .wt-navbar .navbar-right .btn-login {
        display: inline-block;
        margin: 10px 15px;
    }

    .wt-navbar .navbar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .wt-navbar .navbar-toggle {
        display: block;
        float: right;
        margin: 15px 0;
        border: 2px solid var(--wt-purple);
        border-radius: 4px;
        padding: 8px 10px;
        background: transparent;
    }

    .wt-navbar .navbar-toggle .icon-bar {
        background-color: var(--wt-purple);
        width: 22px;
        height: 2px;
        display: block;
        border-radius: 2px;
    }

    .wt-navbar .navbar-toggle .icon-bar + .icon-bar {
        margin-top: 4px;
    }

    .wt-navbar .navbar-brand img {
        max-height: 60px;
    }

    /* Dropdown inside mobile nav */
    .wt-navbar .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        border: none;
        background: var(--wt-light-bg);
        padding: 0;
    }

    .wt-navbar .dropdown-menu > li > a {
        padding: 10px 30px;
    }

    /* Hero */
    .wt-hero h1 {
        font-size: 32px;
    }

    .wt-hero {
        padding: 60px 0 70px;
    }

    /* Pricing tabs - stack vertically on tablet */
    .pricing-tabs .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 12px;
        gap: 4px;
        padding: 6px;
    }

    .pricing-tabs .nav-tabs > li > a {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Pricing boxes */
    .pricing-box {
        padding: 30px 25px;
    }

    /* Sections reduce padding */
    .wt-services {
        padding: 60px 0;
    }

    .wt-pricing {
        padding: 70px 0 50px;
    }

    .wt-exclusive {
        padding: 80px 0 60px;
    }

    .wt-faq {
        padding: 60px 0;
    }

    .wt-pack-pricing {
        padding: 70px 0;
    }
}

/* --- Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
    /* Top bar stacked */
    .wt-topbar {
        padding: 8px 0;
    }

    .wt-topbar .topbar-left,
    .wt-topbar .topbar-right {
        float: none;
        text-align: center;
    }

    .wt-topbar .topbar-right {
        margin-top: 5px;
    }

    .wt-topbar .topbar-right a {
        margin-left: 8px;
        font-size: 12px;
    }

    .wt-topbar .topbar-left {
        font-size: 12px;
    }

    /* Hero */
    .wt-hero h1 {
        font-size: 26px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .wt-hero p.lead {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .wt-hero {
        padding: 50px 0 60px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 12px !important;
    }

    .wt-hero .btn-gradient {
        font-size: 14px;
        padding: 12px 30px;
    }

    /* Section titles - prevent text overflow */
    .wt-section-title h2 {
        font-size: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    .wt-section-title {
        margin-bottom: 35px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 5px 14px;
    }

    /* Services */
    .wt-services {
        padding: 50px 0;
    }

    .wt-service-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .icon-orbit {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .icon-circle {
        width: 75px;
        height: 75px;
    }

    .icon-circle i {
        font-size: 28px;
    }

    .orbit-dot {
        transform-origin: 50% calc(60px + 7px);
    }

    /* Domain search - stack vertically */
    .wt-domain-search {
        padding: 60px 0 50px;
    }

    .wt-domain-title h2 {
        font-size: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .domain-search-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 10px;
    }

    .ds-form-grp {
        width: 100%;
        flex: none;
    }

    .ds-form-grp input {
        padding: 16px 16px 16px 42px;
        font-size: 14px;
    }

    .ds-form-grp i {
        top: 20px;
        left: 18px;
    }

    .ds-select {
        width: 100%;
        flex: none;
        min-height: 52px;
        padding: 16px 45px 16px 20px;
    }

    .ds-search-btn {
        width: 100%;
        padding: 16px 20px;
        height: auto;
        min-height: 52px;
    }

    /* Domain TLD price list */
    .domain-list ul {
        flex-wrap: wrap;
        gap: 5px 0;
    }

    .domain-list ul li {
        padding: 8px 15px;
        font-size: 13px;
        border-right: none;
    }

    .domain-list ul li span {
        font-size: 12px;
    }

    /* Pricing tabs - full stack on mobile */
    .wt-pricing {
        padding: 50px 0 40px;
    }

    .pricing-tabs {
        margin-bottom: 30px;
    }

    .pricing-tabs .nav-tabs {
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        gap: 0;
        padding: 4px;
        width: 100%;
    }

    .pricing-tabs .nav-tabs > li {
        width: 100%;
    }

    .pricing-tabs .nav-tabs > li > a {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 8px;
        text-align: center;
        display: block;
    }

    /* Pricing boxes */
    .pricing-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .pricing-head h6 {
        font-size: 12px;
    }

    .pricing-icon {
        margin: 25px auto 40px;
    }

    .pricing-list h5 {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .pricing-list ul li {
        font-size: 13px;
        padding: 10px 0;
    }

    .pricing-price h2 {
        font-size: 28px;
    }

    /* Exclusive section */
    .wt-exclusive {
        padding: 60px 0 50px;
    }

    .wt-exclusive-title h2 {
        font-size: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .exclusive-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .exclusive-card {
        padding: 40px 25px 35px;
        margin-bottom: 20px;
    }

    .exclusive-icon-wrap {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .exclusive-icon-circle {
        width: 60px;
        height: 60px;
    }

    .exclusive-icon-circle i {
        font-size: 24px;
    }

    .exclusive-card h4 {
        font-size: 18px;
    }

    .exclusive-card p {
        font-size: 13px;
    }

    /* FAQ */
    .wt-faq {
        padding: 50px 0;
    }

    .faq-image {
        display: none;
    }

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

    .faq-toggle {
        font-size: 14px;
        padding: 15px 55px 15px 20px;
    }

    .faq-icon {
        right: 12px;
        width: 30px;
        height: 30px;
    }

    .faq-answer {
        margin: 15px 15px 20px 20px;
    }

    /* Comparison table */
    .wt-pack-pricing {
        padding: 50px 0;
    }

    .pack-pricing-box {
        padding: 15px;
        border-radius: 8px;
    }

    .pack-table {
        min-width: 650px;
    }

    .pack-table thead th {
        padding: 15px 10px 20px;
    }

    .pack-head-title {
        font-size: 18px;
    }

    .pack-price {
        font-size: 24px;
    }

    .pack-plan-name {
        font-size: 12px;
    }

    .pack-table tbody th,
    .pack-table tbody td {
        padding: 10px;
        font-size: 13px;
    }

    /* Footer */
    .wt-footer .col-sm-6,
    .wt-footer .col-md-3 {
        margin-bottom: 25px;
    }

    .wt-copyright .row > div {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .copyright-social {
        justify-content: center;
    }

    .copyright-text {
        font-size: 12px;
        text-align: center;
    }

    /* Brand logos carousel */
    .wt-brand-area.gradient-bg {
        padding: 30px 0;
    }

    .brand-item img {
        max-width: 100px;
        max-height: 50px;
    }

    .brand-slide {
        padding: 0 15px;
    }

    /* Store sidebar on mobile */
    .product-selection-sidebar {
        width: 85% !important;
    }
}

/* --- Small mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .wt-navbar .navbar-brand img {
        max-height: 50px;
    }

    .wt-hero h1 {
        font-size: 22px;
    }

    .wt-hero p.lead {
        font-size: 14px;
    }

    .wt-section-title h2 {
        font-size: 18px;
        padding: 0 5px;
    }

    .domain-search-form {
        padding: 12px;
    }

    .ds-form-grp input {
        padding: 14px 14px 14px 38px;
        font-size: 13px;
    }

    .ds-form-grp i {
        top: 18px;
        left: 14px;
    }

    .ds-select {
        padding: 14px 40px 14px 16px;
        min-height: 48px;
        font-size: 13px;
    }

    .ds-search-btn {
        padding: 14px 16px;
        min-height: 48px;
        font-size: 14px;
    }

    .wt-topbar .topbar-right {
        display: none;
    }

    .wt-footer {
        padding: 40px 0 0;
    }

    /* Pricing boxes extra compact */
    .pricing-box {
        padding: 25px 15px;
    }

    .pricing-price h2 {
        font-size: 26px;
    }

    .pricing-btn .btn-gradient {
        padding: 10px 24px;
        font-size: 12px;
    }

    /* Exclusive cards compact */
    .exclusive-card {
        padding: 30px 20px 25px;
    }

    .exclusive-card h4 {
        font-size: 16px;
    }

    /* Domain price list compact */
    .domain-list ul li {
        padding: 6px 10px;
        font-size: 12px;
    }

    .domain-list ul li strong {
        margin-right: 5px;
    }

    /* FAQ compact */
    .faq-toggle {
        font-size: 13px;
        padding: 12px 48px 12px 15px;
    }

    .faq-heading {
        font-size: 20px;
    }

    /* Pack pricing compact */
    .pack-table {
        min-width: 580px;
    }

    .pack-table thead th {
        padding: 10px 8px 15px;
    }
}

/* === Aban PaPa Promo Popup === */
.wt-promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.wt-promo-overlay.wt-promo-visible {
    background: rgba(15, 10, 30, 0.65);
    backdrop-filter: blur(6px);
}

.wt-promo-popup {
    background: linear-gradient(160deg, #ffffff 0%, #f8f4ff 100%);
    border-radius: 24px;
    padding: 50px 40px 40px;
    max-width: 450px;
    width: 92%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(113, 17, 162, 0.25), 0 0 0 1px rgba(113, 17, 162, 0.08);
    transform: scale(0.3) translateY(60px) rotate(-3deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.wt-promo-popup.wt-promo-animate {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
}

.wt-promo-popup.wt-promo-exit {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: all 0.3s ease-in;
}

/* Floating particles */
.wt-promo-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.wt-promo-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.15;
    animation: wt-float 6s ease-in-out infinite;
}

.wt-promo-particles span:nth-child(1) { background: var(--wt-gradient-start); top: 15%; left: 10%; animation-delay: 0s; }
.wt-promo-particles span:nth-child(2) { background: var(--wt-purple); top: 70%; left: 85%; animation-delay: 1s; width: 12px; height: 12px; }
.wt-promo-particles span:nth-child(3) { background: var(--wt-gradient-end); top: 40%; left: 90%; animation-delay: 2s; width: 6px; height: 6px; }
.wt-promo-particles span:nth-child(4) { background: var(--wt-green); top: 80%; left: 15%; animation-delay: 3s; }
.wt-promo-particles span:nth-child(5) { background: var(--wt-gradient-start); top: 25%; left: 80%; animation-delay: 4s; width: 10px; height: 10px; }
.wt-promo-particles span:nth-child(6) { background: var(--wt-purple); top: 60%; left: 5%; animation-delay: 5s; width: 6px; height: 6px; }

@keyframes wt-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

/* Badge */
.wt-promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--wt-purple), var(--wt-purple-dark));
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    animation: wt-badge-shimmer 3s ease-in-out infinite;
}

@keyframes wt-badge-shimmer {
    0%, 100% { box-shadow: 0 2px 10px rgba(113, 17, 162, 0.3); }
    50% { box-shadow: 0 2px 20px rgba(113, 17, 162, 0.6); }
}

.wt-promo-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(0,0,0,0.05);
    border: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}

.wt-promo-close:hover {
    background: rgba(251, 109, 98, 0.1);
    color: var(--wt-gradient-start);
    transform: rotate(90deg);
}

.wt-promo-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: wt-promo-pulse 2s ease-in-out infinite;
}

.wt-promo-icon i {
    font-size: 32px;
    color: #fff;
    animation: wt-icon-bounce 2s ease-in-out infinite;
}

@keyframes wt-promo-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 109, 98, 0.4); }
    50% { box-shadow: 0 0 0 18px rgba(251, 109, 98, 0); }
}

@keyframes wt-icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.wt-promo-title {
    font-family: 'Rubik', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--wt-heading);
    margin-bottom: 6px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.wt-promo-highlight {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wt-promo-subtitle {
    color: var(--wt-body-text);
    font-size: 15px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.wt-promo-subtitle strong {
    color: var(--wt-purple);
}

.wt-promo-price-wrap {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.wt-promo-price-old {
    font-size: 13px;
    color: #b0b5c0;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.wt-promo-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.wt-promo-currency {
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wt-promo-amount {
    font-family: 'Rubik', sans-serif;
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    animation: wt-price-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

@keyframes wt-price-pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.wt-promo-period {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: var(--wt-body-text);
    font-weight: 500;
}

.wt-promo-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.wt-promo-features span {
    font-size: 12px;
    color: #6b7280;
}

.wt-promo-features i {
    color: var(--wt-green);
    margin-right: 3px;
    font-size: 11px;
}

.wt-promo-btn {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    animation: wt-btn-glow 2s ease-in-out infinite;
    letter-spacing: 0.5px;
}

.wt-promo-btn:hover {
    box-shadow: 0 10px 35px rgba(251, 109, 98, 0.5);
    transform: translateY(-3px) scale(1.02);
    color: #fff !important;
}

.wt-promo-btn:active {
    transform: translateY(0) scale(0.98);
}

@keyframes wt-btn-glow {
    0%, 100% { box-shadow: 0 5px 20px rgba(251, 109, 98, 0.3); }
    50% { box-shadow: 0 5px 30px rgba(251, 109, 98, 0.6); }
}

.wt-promo-dismiss {
    display: block;
    margin-top: 16px;
    color: #b0b5c0;
    font-size: 12px;
    text-decoration: none !important;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
}

.wt-promo-dismiss:hover {
    color: var(--wt-gradient-start);
}

@media (max-width: 480px) {
    .wt-promo-popup {
        padding: 40px 25px 30px;
        margin: 0 10px;
    }
    .wt-promo-title {
        font-size: 22px;
    }
    .wt-promo-amount {
        font-size: 50px;
    }
    .wt-promo-btn {
        padding: 13px 38px;
        font-size: 14px;
    }
    .wt-promo-features {
        gap: 8px 12px;
    }
}

/* === Hide Downloads from Support sidebar === */
.sidebar a[href$="downloads.php"] {
    display: none !important;
}

/* === Cookie Consent Banner === */
.wt-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1f2126;
    border-top: 3px solid var(--wt-purple);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.wt-cookie-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wt-cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.wt-cookie-icon {
    font-size: 28px;
    color: var(--wt-gradient-end);
    flex-shrink: 0;
}

.wt-cookie-text p {
    margin: 0;
    color: #c8ccd4;
    font-size: 13px;
    line-height: 1.6;
}

.wt-cookie-text p a {
    color: var(--wt-gradient-end);
    text-decoration: underline;
    font-weight: 500;
}

.wt-cookie-text p a:hover {
    color: var(--wt-gradient-start);
}

.wt-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.wt-cookie-btn-decline {
    background: transparent;
    border: 1px solid #555;
    color: #a1a7b3;
    padding: 8px 22px;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wt-cookie-btn-decline:hover {
    border-color: #999;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.wt-cookie-btn-accept {
    background: linear-gradient(135deg, var(--wt-gradient-start), var(--wt-gradient-end));
    border: none;
    color: #fff;
    padding: 8px 28px;
    border-radius: 50px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wt-cookie-btn-accept:hover {
    box-shadow: 0 4px 15px rgba(251, 109, 98, 0.4);
    color: #fff;
}

/* Cookie banner mobile */
@media (max-width: 767px) {
    .wt-cookie-inner {
        flex-direction: column;
        padding: 18px 20px;
        gap: 15px;
        text-align: center;
    }

    .wt-cookie-text {
        flex-direction: column;
        gap: 10px;
    }

    .wt-cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .wt-cookie-btn-accept,
    .wt-cookie-btn-decline {
        flex: 1;
    }
}
