/* =============================================
   PAGE: THIẾT KẾ WEB AI - VibeWP
   ============================================= */

/* --- HERO MEGA --- */
.tkw-hero {
   position: relative;
   min-height: 600px;
   display: flex;
   align-items: center;
   overflow: hidden;
   background: linear-gradient(160deg, #0A0502 0%, #1A0E05 40%, #2D1A0A 100%);
   padding: 80px 0 60px
}

.tkw-hero-particles {
   position: absolute;
   inset: 0;
   z-index: 0;
   background-image: radial-gradient(circle, rgba(200, 121, 65, .18) 1px, transparent 1px);
   background-size: 32px 32px;
   animation: tkwParticleDrift 20s linear infinite
}

@keyframes tkwParticleDrift {
   0% {
      background-position: 0 0
   }

   100% {
      background-position: 32px 32px
   }
}

.tkw-hero-glow {
   position: absolute;
   border-radius: 50%;
   filter: blur(100px);
   z-index: 0;
   animation: tkwGlow 8s ease-in-out infinite
}

.tkw-glow1 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(200, 121, 65, .3) 0%, transparent 70%);
   top: -120px;
   right: -60px
}

.tkw-glow2 {
   width: 350px;
   height: 350px;
   background: radial-gradient(circle, rgba(232, 160, 96, .25) 0%, transparent 70%);
   bottom: -80px;
   left: 5%;
   animation-delay: -3s
}

.tkw-glow3 {
   width: 200px;
   height: 200px;
   background: radial-gradient(circle, rgba(255, 180, 100, .15) 0%, transparent 70%);
   top: 50%;
   left: 45%;
   animation-delay: -5s
}

@keyframes tkwGlow {

   0%,
   100% {
      transform: translate(0, 0) scale(1)
   }

   40% {
      transform: translate(20px, -25px) scale(1.08)
   }

   70% {
      transform: translate(-15px, 15px) scale(.94)
   }
}

.tkw-hero .container {
   position: relative;
   z-index: 2
}

.badge-ai {
   display: inline-flex;
   align-items: center;
   background: rgba(200, 121, 65, .1);
   color: #C87941;
   padding: 6px 16px;
   border-radius: 30px;
   font-size: .8rem;
   font-weight: 600;
   border: 1px solid rgba(200, 121, 65, .2);
   margin-bottom: 12px;
   gap: 5px;
}

.tkw-hero-title {
   font-size: clamp(2.2rem, 5.5vw, 3.8rem);
   font-weight: 800;
   line-height: 1.15;
   color: #fff;
   margin-bottom: 20px
}

.tkw-hero-title .highlight {
   background: linear-gradient(135deg, #C87941, #E8A060, #D4722B);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text
}

.tkw-typing-cursor {
   display: inline-block;
   width: 3px;
   height: 1em;
   background: #E8A060;
   margin-left: 4px;
   animation: tkwBlink 1s step-end infinite;
   vertical-align: text-bottom
}

@keyframes tkwBlink {

   0%,
   100% {
      opacity: 1
   }

   50% {
      opacity: 0
   }
}

.tkw-hero-desc {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, .7);
   margin-bottom: 36px;
   max-width: 560px;
   line-height: 1.8
}

.tkw-hero-btns {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 48px
}

.tkw-btn-glow {
   background: linear-gradient(135deg, #C87941, #8B4513);
   color: #fff !important;
   border: none;
   padding: 14px 32px;
   border-radius: 10px;
   font-weight: 700;
   font-size: 1rem;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   cursor: pointer;
   transition: all .3s;
   box-shadow: 0 4px 24px rgba(200, 121, 65, .4);
   text-decoration: none;
   font-family: var(--font-main)
}

.tkw-btn-glow:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 36px rgba(200, 121, 65, .6);
   color: #fff !important
}

.tkw-btn-outline-light {
   background: transparent;
   color: rgba(255, 255, 255, .85) !important;
   border: 2px solid rgba(255, 255, 255, .25);
   padding: 13px 32px;
   border-radius: 10px;
   font-weight: 600;
   font-size: 1rem;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   cursor: pointer;
   transition: all .3s;
   text-decoration: none;
   font-family: var(--font-main)
}

.tkw-btn-outline-light:hover {
   border-color: #C87941;
   color: #E8A060 !important;
   background: rgba(200, 121, 65, .08)
}

.tkw-hero-stats {
   display: flex;
   gap: 16px;
   flex-wrap: wrap
}

.tkw-hero-stat {
   background: rgba(255, 255, 255, .06);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, .1);
   border-radius: 14px;
   padding: 16px 24px;
   text-align: center;
   flex: 1;
   min-width: 120px
}

.tkw-hero-stat strong {
   display: block;
   font-size: 1.5rem;
   font-weight: 800;
   color: #fff
}

.tkw-hero-stat span {
   font-size: .8rem;
   color: rgba(255, 255, 255, .5);
   font-weight: 500
}

.tkw-float-cards {
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   z-index: 1;
   width: 45%;
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   justify-content: center;
   perspective: 800px
}

.tkw-float-card {
   background: rgba(255, 255, 255, .06);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(200, 121, 65, .2);
   border-radius: 16px;
   padding: 24px 20px;
   text-align: center;
   color: rgba(255, 255, 255, .8);
   font-size: .82rem;
   font-weight: 600;
   min-width: 110px;
   transition: all .4s;
   animation: tkwFloat 6s ease-in-out infinite
}

.tkw-float-card:nth-child(2) {
   animation-delay: -1.5s
}

.tkw-float-card:nth-child(3) {
   animation-delay: -3s
}

.tkw-float-card:nth-child(4) {
   animation-delay: -4.5s
}

.tkw-float-card i {
   display: block;
   font-size: 1.8rem;
   color: #E8A060;
   margin-bottom: 8px
}

.tkw-float-card:hover {
   border-color: #C87941;
   transform: scale(1.08);
   background: rgba(200, 121, 65, .12)
}

@keyframes tkwFloat {

   0%,
   100% {
      transform: translateY(0)
   }

   50% {
      transform: translateY(-12px)
   }
}

/* --- COMMON SECTION HEADER --- */
.section-header {
   text-align: center;
   max-width: 800px;
   margin-left: auto !important;
   margin-right: auto !important;
   margin-bottom: 40px;
   width: 100%;
   display: block;
}

.section-title {
   font-weight: 800;
   color: #2D1A0A;
   line-height: 1.3;
}

.section-title span {
   color: #C87941;
}

/* --- FEATURES --- */
.tkw-features {
   padding: 80px 0;
   background: #fff;
}

.tkw-features .section-header {
   margin-bottom: 50px
}

.tkw-feat-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px
}

.tkw-feat-card {
   background: #fff;
   border: 1px solid #EDD9C8;
   border-radius: 18px;
   padding: 32px 28px;
   transition: all .3s;
   position: relative;
   overflow: hidden
}

.tkw-feat-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: linear-gradient(90deg, #C87941, #E8A060);
   transform: scaleX(0);
   transition: transform .3s;
   transform-origin: left
}

.tkw-feat-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 16px 48px rgba(200, 121, 65, .15);
   border-color: rgba(200, 121, 65, .4)
}

.tkw-feat-card:hover::before {
   transform: scaleX(1)
}

.tkw-feat-icon {
   width: 56px;
   height: 56px;
   background: linear-gradient(135deg, rgba(200, 121, 65, .12), rgba(139, 69, 19, .12));
   border: 1px solid rgba(200, 121, 65, .2);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.4rem;
   color: #B5621E;
   margin-bottom: 18px;
   transition: all .3s
}

.tkw-feat-card:hover .tkw-feat-icon {
   background: linear-gradient(135deg, #C87941, #8B4513);
   color: #fff;
   border-color: transparent
}

.tkw-feat-card h4 {
   font-size: 1.05rem;
   font-weight: 700;
   margin-bottom: 10px;
   color: var(--text-light)
}

.tkw-feat-card p {
   font-size: .88rem;
   color: var(--text-muted);
   line-height: 1.7;
   margin: 0
}

/* --- WIZARD --- */
.tkw-wizard-section {
   padding: 80px 0;
   background: linear-gradient(180deg, #FFF8F2, #FDF8F3)
}

.tkw-progress {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0;
   margin-bottom: 30px;
   position: relative
}

.tkw-step-indicator {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 28px;
   border-radius: 40px;
   font-weight: 700;
   font-size: .92rem;
   cursor: pointer;
   transition: all .3s;
   border: 2px solid #EDD9C8;
   background: #fff;
   color: var(--text-muted);
   position: relative;
   z-index: 2
}

.tkw-step-indicator.active {
   background: linear-gradient(135deg, #C87941, #8B4513);
   color: #fff;
   border-color: transparent;
   box-shadow: 0 4px 20px rgba(200, 121, 65, .35)
}

.tkw-step-indicator.done {
   background: #E8F5E9;
   color: #2E7D32;
   border-color: #A5D6A7
}

.tkw-step-indicator .step-num {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .8rem;
   font-weight: 800;
   background: rgba(0, 0, 0, .08)
}

.tkw-step-indicator.active .step-num {
   background: rgba(255, 255, 255, .25)
}

.tkw-step-indicator.done .step-num {
   background: #66BB6A;
   color: #fff
}

.tkw-step-line {
   width: 60px;
   height: 2px;
   background: #EDD9C8;
   z-index: 1
}

.tkw-step-line.done {
   background: #A5D6A7
}

.tkw-step-content {
   display: none;
   animation: tkwFadeIn .4s ease
}

.tkw-step-content.active {
   display: block
}

@keyframes tkwFadeIn {
   from {
      opacity: 0;
      transform: translateY(16px)
   }

   to {
      opacity: 1;
      transform: translateY(0)
   }
}

/* Step 1 - Chip Style */
.tkw-step1-intro {
   text-align: center;
   margin-bottom: 32px
}

.tkw-step1-intro h3 {
   font-size: 1.5rem;
   font-weight: 800;
   margin-bottom: 8px;
   color: var(--text-light)
}

.tkw-step1-intro p {
   color: var(--text-muted);
   font-size: .95rem;
   margin: 0 auto
}

.tkw-select-group {
   margin-bottom: 24px
}

.tkw-select-label {
   display: block;
   font-weight: 700;
   font-size: .95rem;
   margin-bottom: 12px;
   color: var(--text-light)
}

.tkw-chip-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 4px
}

.tkw-chip,
.tkw-chip-industry {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 12px;
   border-radius: 30px;
   font-size: 13px;
   font-weight: 500;
   cursor: pointer;
   transition: all .25s;
   border: 1.5px solid #EDD9C8;
   background: #fff;
   color: var(--text-light);
   user-select: none
}

.tkw-chip i {
   font-size: 10px;
   color: #C87941
}

.tkw-chip-industry span {
   font-size: 1rem
}

.tkw-chip:hover,
.tkw-chip-industry:hover {
   border-color: #C87941;
   background: #FFF8F2;
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(200, 121, 65, .1)
}

.tkw-chip.selected {
   background: linear-gradient(135deg, #C87941, #A0522D);
   color: #fff;
   border-color: transparent;
   box-shadow: 0 4px 16px rgba(200, 121, 65, .3)
}

.tkw-chip.selected i {
   color: #fff
}

.tkw-chip-industry.selected {
   background: linear-gradient(135deg, #FFF4EB, #FDE8D4);
   color: #8B4513;
   border-color: #C87941;
   box-shadow: 0 2px 12px rgba(200, 121, 65, .15)
}

.tkw-form-group {
   margin-bottom: 20px
}

.tkw-form-group label {
   display: block;
   font-weight: 600;
   font-size: .92rem;
   margin-bottom: 8px;
   color: var(--text-light)
}

/* Live Feedback */
.tkw-live-feedback {
   margin-top: 16px;
   padding: 12px 16px;
   background: rgba(156, 39, 176, 0.05);
   border-left: 3px solid #9c27b0;
   border-radius: 4px 10px 10px 4px;
   font-size: 0.9rem;
   font-weight: 500;
   color: var(--text-light);
   animation: tkwFadeIn 0.4s ease;
}

/* Prompt Meter */
.tkw-prompt-meter-wrap {
   margin-top: 10px;
}

.tkw-prompt-meter {
   width: 100%;
   height: 6px;
   background: #EDD9C8;
   border-radius: 6px;
   overflow: hidden;
   margin-bottom: 6px;
}

.tkw-prompt-meter-fill {
   height: 100%;
   width: 0%;
   background: #C87941;
   border-radius: 6px;
   transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

.tkw-prompt-status {
   font-size: 0.8rem;
   color: var(--text-muted);
   text-align: right;
   font-weight: 500;
}

/* Prompt Suggestions */
.tkw-prompt-suggestions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   align-items: center;
   position: relative;
   top: -20px;
}

.tkw-prompt-label {
   font-size: 0.85rem;
   font-weight: 700;
   color: #C87941;
}

.tkw-prompt-chip {
   font-size: 0.8rem;
   background: #FDF8F3;
   border: 1px dashed #C87941;
   padding: 6px 12px;
   border-radius: 20px;
   color: #A0522D;
   cursor: pointer;
   transition: all 0.25s;
}

.tkw-prompt-chip:hover {
   background: #FFF8F2;
   border-style: solid;
   color: #C87941;
   transform: translateY(-2px);
   box-shadow: 0 4px 10px rgba(200, 121, 65, 0.1);
}

.tkw-input,
.tkw-textarea {
   width: 100%;
   padding: 12px 16px;
   border: 1.5px solid #EDD9C8;
   border-radius: 10px;
   font-size: .95rem;
   font-family: var(--font-main);
   color: var(--text-light);
   background: #fff;
   transition: all .3s;
   outline: none
}

.tkw-input:focus,
.tkw-textarea:focus {
   border-color: #C87941;
   box-shadow: 0 0 0 3px rgba(200, 121, 65, .1)
}

.tkw-textarea {
   min-height: 100px;
   resize: vertical
}

.tkw-ai-result {
   display: none;
   background: linear-gradient(135deg, #FFF8F2, #FFF4EB);
   border: 1.5px solid rgba(200, 121, 65, .25);
   border-radius: 16px;
   padding: 28px;
   margin-top: 24px
}

.tkw-ai-result.show {
   display: block;
   animation: tkwFadeIn .5s ease
}

.tkw-tree {
   list-style: none;
   padding-left: 20px;
   margin: 12px 0
}

.tkw-tree li {
   position: relative;
   padding: 6px 0 6px 24px;
   font-size: .9rem;
   color: var(--text-light)
}

.tkw-tree li::before {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   width: 1.5px;
   background: #EDD9C8
}

.tkw-tree li::after {
   content: '';
   position: absolute;
   left: 0;
   top: 50%;
   width: 16px;
   height: 1.5px;
   background: #EDD9C8
}

.tkw-tree li i {
   color: #C87941;
   margin-right: 8px;
   font-size: .8rem
}

.tkw-sub-tree {
   list-style: none;
   padding-left: 0;
   margin-top: 6px;
   margin-bottom: 0;
}

.tkw-sub-tree li {
   padding: 4px 0 4px 28px;
   font-size: .85rem;
}

.tkw-sub-tree li::before {
   left: 8px;
}

.tkw-sub-tree li::after {
   left: 8px;
   width: 14px;
}

.tkw-sub-tree li i {
   font-size: .7rem;
   margin-right: 6px;
}

.tkw-recommend-cards {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
   margin-top: 20px
}

.tkw-recommend-card {
   background: #fff;
   border: 1px solid #EDD9C8;
   border-radius: 12px;
   padding: 20px;
   transition: all .3s
}

.tkw-recommend-card:hover {
   border-color: #C87941;
   box-shadow: 0 4px 16px rgba(200, 121, 65, .1)
}

.tkw-recommend-card h5 {
   font-size: .92rem;
   font-weight: 700;
   margin-bottom: 6px;
   color: var(--text-light)
}

.tkw-recommend-card p {
   font-size: .82rem;
   color: var(--text-muted);
   margin: 0;
   line-height: 1.5
}

/* Step 2 */
.tkw-upload-zone {
   border: 2px dashed #D4B89C;
   border-radius: 16px;
   padding: 48px 24px;
   text-align: center;
   cursor: pointer;
   transition: all .3s;
   background: #FFFBF7
}

.tkw-upload-zone:hover,
.tkw-upload-zone.dragover {
   border-color: #C87941;
   background: #FFF4EB
}

.tkw-upload-zone i {
   font-size: 2rem;
   color: #C87941;
   margin-bottom: 10px
}

.tkw-upload-zone p {
   color: var(--text-muted);
   font-size: .85rem;
   margin: 0
}

.tkw-upload-zone .browse-link {
   color: #C87941;
   font-weight: 600;
   text-decoration: underline;
   cursor: pointer
}

.tkw-logo-preview {
   display: none;
   text-align: center;
   margin-top: 12px
}

.tkw-logo-preview img {
   max-height: 70px;
   border-radius: 8px;
   border: 1px solid #EDD9C8
}

/* Style Pills */
.tkw-style-pills {
   display: flex;
   gap: 8px;
   justify-content: space-between;
}

.tkw-style-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 8px 10px;
   border-radius: 30px;
   font-size: .82rem;
   font-weight: 600;
   cursor: pointer;
   border: 1.5px solid #EDD9C8;
   background: #fff;
   color: var(--text-light);
   transition: all .25s
}

.tkw-style-pill:hover {
   border-color: #C87941;
   background: #FFF8F2
}

.tkw-style-pill.selected {
   background: linear-gradient(135deg, #C87941, #A0522D);
   color: #fff;
   border-color: transparent;
   box-shadow: 0 3px 12px rgba(200, 121, 65, .3)
}

.tkw-style-pill.selected i {
   color: #fff
}

.tkw-style-pill i {
   font-size: .75rem;
   color: #C87941
}

/* Preview Frame */
.tkw-preview-frame {
   background: #fff;
   border: 2px solid #EDD9C8;
   border-radius: 16px;
   min-height: 480px;
   max-height: 600px;
   overflow: hidden;
   position: relative;
   transition: all .3s
}

.tkw-preview-frame .tkw-demo-img {
   width: 100%;
   display: block;
   transition: transform 8s ease;
   transform-origin: top center;
   cursor: zoom-in;
}

.tkw-preview-frame:hover .tkw-demo-img {
   transform: translateY(calc(-100% + 800px));
}

.tkw-preview-placeholder {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: 480px;
   color: var(--text-muted);
   text-align: center;
   padding: 40px
}

.tkw-preview-placeholder i {
   font-size: 3rem;
   color: #D4B89C;
   margin-bottom: 16px
}

.tkw-preview-placeholder p {
   font-size: .9rem;
   line-height: 1.7
}

/* Hint dưới nút tạo layout */
.tkw-gen-hint {
   font-size: .78rem;
   color: #A0845E;
   margin-top: 10px;
   padding: 8px 12px;
   background: #FFF8F0;
   border-radius: 8px;
   border: 1px dashed #EDD9C8;
   line-height: 1.5;
}

.tkw-gen-hint i {
   margin-right: 4px;
   color: #C87941;
}

/* Notice phát thảo sau khi tạo xong */
.tkw-layout-notice {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-top: 12px;
   padding: 14px 18px;
   background: linear-gradient(135deg, #FFF8F0, #FFF3E6);
   border: 1px solid #EDD9C8;
   border-radius: 12px;
   font-size: .85rem;
   color: #7A5C3E;
   line-height: 1.6;
   animation: tkwFadeIn .5s ease;
}

.tkw-layout-notice i {
   color: #C87941;
   font-size: 1.1rem;
   margin-top: 2px;
   flex-shrink: 0;
}

/* Wireframe Mockup */
.tkw-wf {
   font-size: .75rem;
   color: #666
}

.tkw-wf-nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 20px;
   background: #1a0e05;
   color: #fff
}

.tkw-wf-nav-logo {
   font-weight: 800;
   font-size: .85rem;
   color: #E8A060
}

.tkw-wf-nav-links {
   display: flex;
   gap: 16px;
   font-size: .7rem;
   color: rgba(255, 255, 255, .6)
}

.tkw-wf-nav-cta {
   background: #C87941;
   color: #fff;
   border: none;
   padding: 5px 14px;
   border-radius: 20px;
   font-size: .7rem;
   font-weight: 600
}

.tkw-wf-hero {
   padding: 32px 20px;
   text-align: center;
   background: linear-gradient(135deg, #FFF4EB, #FDE8D4);
   min-height: 120px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center
}

.tkw-wf-hero h4 {
   font-size: 1rem;
   font-weight: 800;
   color: var(--text-light);
   margin-bottom: 6px
}

.tkw-wf-hero p {
   font-size: .75rem;
   color: var(--text-muted);
   margin-bottom: 10px
}

.tkw-wf-hero-btn {
   display: inline-block;
   background: #C87941;
   color: #fff;
   padding: 6px 20px;
   border-radius: 20px;
   font-size: .72rem;
   font-weight: 600
}

.tkw-wf-section {
   padding: 20px;
   border-top: 1px solid #f0e6dc
}

.tkw-wf-section-title {
   font-size: .78rem;
   font-weight: 700;
   color: var(--text-light);
   margin-bottom: 10px;
   text-align: center
}

.tkw-wf-cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 8px
}

.tkw-wf-card {
   background: #FDF8F3;
   border: 1px solid #EDD9C8;
   border-radius: 8px;
   padding: 12px 8px;
   text-align: center
}

.tkw-wf-card i {
   font-size: .9rem;
   color: #C87941;
   margin-bottom: 4px;
   display: block
}

.tkw-wf-card span {
   font-size: .65rem;
   color: var(--text-muted);
   line-height: 1.3;
   display: block
}

.tkw-wf-footer {
   padding: 14px 20px;
   background: #2D1A0A;
   text-align: center;
   color: rgba(255, 255, 255, .5);
   font-size: .65rem
}

.tkw-wf-cols {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px
}

.tkw-wf-box {
   background: #FDF8F3;
   border: 1px solid #EDD9C8;
   border-radius: 8px;
   padding: 14px 10px;
   min-height: 50px
}

.tkw-wf-box-label {
   font-size: .68rem;
   font-weight: 700;
   color: var(--text-light);
   margin-bottom: 4px
}

.tkw-wf-box-desc {
   font-size: .6rem;
   color: var(--text-muted)
}

.tkw-wf-loading {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   height: 480px;
   gap: 12px
}

.tkw-wf-loading .tkw-spinner {
   width: 32px;
   height: 32px
}




/* Step 3 */
.tkw-addon-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
   margin-bottom: 32px
}

.tkw-addon-card {
   background: #fff;
   border: 2px solid #EDD9C8;
   border-radius: 14px;
   padding: 24px 20px;
   display: flex;
   align-items: center;
   gap: 16px;
   cursor: pointer;
   transition: all .3s;
   position: relative
}

.tkw-addon-card:hover {
   border-color: #C87941;
   box-shadow: 0 4px 16px rgba(200, 121, 65, .1)
}

.tkw-addon-card.selected {
   border-color: #C87941;
   background: linear-gradient(135deg, #FFF8F2, #FFF4EB)
}

.tkw-addon-check {
   width: 22px;
   height: 22px;
   border: 2px solid #D4B89C;
   border-radius: 6px;
   flex-shrink: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all .3s;
   margin-top: 2px;
   color: transparent
}

.tkw-addon-card.selected .tkw-addon-check {
   background: #C87941;
   border-color: #C87941;
   color: #fff
}

.tkw-addon-info h5 {
   font-size: .95rem;
   font-weight: 700;
   margin-bottom: 4px;
   color: var(--text-light)
}

.tkw-addon-info p {
   font-size: .82rem;
   color: var(--text-muted);
   margin: 0;
   line-height: 1.5
}

.tkw-addon-emoji {
   font-size: 1.5rem;
   flex-shrink: 0
}

.tkw-summary-box {
   background: #fff;
   border: 1.5px solid #EDD9C8;
   border-radius: 16px;
   padding: 28px;
   margin-top: 24px
}

.tkw-summary-box h4 {
   font-size: 1.05rem;
   font-weight: 700;
   margin-bottom: 16px;
   color: var(--text-light)
}

.tkw-summary-list {
   list-style: none;
   padding: 0;
   margin: 0 0 20px
}

.tkw-summary-list li {
   padding: 8px 0;
   border-bottom: 1px solid #F0E6DA;
   font-size: .9rem;
   color: var(--text-light);
   display: flex;
   align-items: center;
   gap: 8px
}

.tkw-summary-list li i {
   color: #C87941
}

/* Wizard nav buttons */
.tkw-wizard-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   margin-top: 32px;
   padding-top: 24px;
   border-top: 1px solid #EDD9C8
}

.tkw-wizard-nav .tkw-btn-submit {
   flex: 1;
   max-width: 320px;
}

.tkw-btn-back {
   background: #fff;
   border: 1.5px solid #EDD9C8;
   color: var(--text-muted);
   padding: 12px 28px;
   border-radius: 10px;
   font-weight: 600;
   font-size: .92rem;
   cursor: pointer;
   transition: all .3s;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-family: var(--font-main)
}

.tkw-btn-back:hover {
   border-color: #C87941;
   color: var(--text-light)
}

.tkw-btn-next {
   background: linear-gradient(135deg, #C87941, #8B4513);
   color: #fff;
   border: none;
   padding: 12px 32px;
   border-radius: 10px;
   font-weight: 700;
   font-size: .95rem;
   cursor: pointer;
   transition: all .3s;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 4px 16px rgba(200, 121, 65, .3);
   font-family: var(--font-main)
}

.tkw-btn-next:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 24px rgba(200, 121, 65, .45)
}

.tkw-btn-next:disabled {
   background: linear-gradient(135deg, #ccc, #b0b0b0);
   box-shadow: none;
   cursor: not-allowed;
   opacity: .55;
   transform: none;
}

.tkw-btn-submit {
   background: linear-gradient(135deg, #C87941 0%, #E8A060 50%, #C87941 100%);
   background-size: 200% auto;
   color: #fff;
   border: none;
   padding: 14px 36px;
   border-radius: 12px;
   font-weight: 700;
   font-size: 1rem;
   cursor: pointer;
   transition: all .4s ease;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   box-shadow: 0 4px 20px rgba(200, 121, 65, .35), inset 0 1px 0 rgba(255, 255, 255, .2);
   font-family: var(--font-main);
   position: relative;
   overflow: hidden;
   letter-spacing: .3px;
   text-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.tkw-btn-submit::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
   transition: left .6s ease;
}

.tkw-btn-submit:hover {
   background-position: right center;
   transform: translateY(-3px);
   box-shadow: 0 8px 30px rgba(200, 121, 65, .5), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.tkw-btn-submit:hover::before {
   left: 100%;
}

.tkw-btn-submit:active {
   transform: translateY(-1px);
   box-shadow: 0 4px 16px rgba(200, 121, 65, .4);
}

.tkw-btn-submit i {
   animation: tkwRocketPulse 2s ease-in-out infinite;
}

@keyframes tkwRocketPulse {

   0%,
   100% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-2px);
   }
}

.tkw-btn-ai {
   background: linear-gradient(135deg, #7B1FA2, #9C27B0);
   color: #fff;
   border: none;
   padding: 12px 28px;
   border-radius: 10px;
   font-weight: 700;
   font-size: .92rem;
   cursor: pointer;
   transition: all .3s;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 4px 16px rgba(123, 31, 162, .3);
   font-family: var(--font-main)
}

.tkw-btn-ai:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 24px rgba(123, 31, 162, .45)
}

/* AI Loading */
.tkw-ai-loading {
   display: none;
   text-align: center;
   padding: 40px
}

.tkw-ai-loading.show {
   display: flex;
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background: rgba(255, 255, 255, 0.85);
   backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
   z-index: 99999;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.tkw-spinner {
   width: 48px;
   height: 48px;
   border: 3px solid #EDD9C8;
   border-top-color: #C87941;
   border-radius: 50%;
   animation: tkwSpin 1s linear infinite;
   margin: 0 auto 16px
}

@keyframes tkwSpin {
   to {
      transform: rotate(360deg)
   }
}

/* --- OVERLAY KHI TẠO LAYOUT --- */
#tkw-gen-overlay {
   position: absolute;
   inset: 0;
   background: rgba(255, 253, 250, 0.88);
   backdrop-filter: blur(4px);
   z-index: 50;
   display: none;
   align-items: center;
   justify-content: center;
   border-radius: 16px;
}

#tkw-gen-overlay.active {
   display: flex;
}

.tkw-overlay-content {
   text-align: center;
   animation: tkwFadeIn .4s ease;
}

.tkw-overlay-content p {
   color: #7A5C3E;
   font-size: 1rem;
   font-weight: 600;
   margin-top: 12px;
}

.tkw-overlay-content small {
   font-weight: 400;
   font-size: .82rem;
}

/* --- PORTFOLIO --- */
.tkw-portfolio {
   padding: 80px 0;
   background: #fff
}

.tkw-port-filter {
   display: flex;
   gap: 10px;
   justify-content: center;
   margin-bottom: 40px;
   flex-wrap: wrap
}

.tkw-port-filter button {
   background: rgba(200, 121, 65, .08);
   border: 1px solid rgba(200, 121, 65, .25);
   color: var(--text-muted);
   padding: 8px 22px;
   border-radius: 30px;
   font-size: .88rem;
   font-weight: 600;
   cursor: pointer;
   transition: all .3s;
   font-family: var(--font-main);
   text-transform: capitalize;
}

.tkw-port-filter button.active,
.tkw-port-filter button:hover {
   background: #C87941;
   border-color: #C87941;
   color: #fff
}

.tkw-port-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 15px
}

.tkw-port-card {
   border-radius: 16px;
   overflow: hidden;
   position: relative;
   cursor: pointer;
   background: #F5E6D8;
   border: 1px solid rgba(212, 160, 106, 0.3);
   box-shadow: 0 10px 30px rgba(45, 26, 10, 0.05);
   transition: all 0.4s ease
}

.tkw-port-card:hover {
   box-shadow: 0 20px 50px rgba(45, 26, 10, 0.15);
   transform: translateY(-5px);
   border-color: rgba(212, 160, 106, 0.6)
}

.tkw-port-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top;
   transition: transform .5s
}

.tkw-port-card:hover img {
   transform: scale(1.08)
}

.tkw-port-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(45, 26, 10, .85) 0%, transparent 60%);
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 24px;
   opacity: 0;
   transition: opacity .3s;
   text-transform: capitalize;
}

.tkw-port-card:hover .tkw-port-overlay {
   opacity: 1
}

.tkw-port-overlay h4 {
   color: #fff;
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 4px
}

.tkw-port-overlay span {
   color: rgba(255, 255, 255, .7);
   font-size: .82rem
}

:root {
   --primary: #C87941;
   --primary-light: #E8A060;
   --primary-dark: #A66032;
   --bg-light: #FDF8F3;
   --text-light: #2D1A0A;
   --text-muted: #7E6B5A;
   --font-main: 'Be Vietnam Pro', sans-serif;
   --glass: rgba(255, 255, 255, 0.7)
}

.tkw-btn-edit-tree {
   background: #FDF8F3;
   border: 1px solid #EDD9C8;
   color: #C87941;
   padding: 6px 14px;
   border-radius: 8px;
   font-size: 0.85rem;
   font-weight: 600;
   transition: all 0.3s;
}

.tkw-btn-edit-tree:hover {
   background: #C87941;
   color: #fff;
   border-color: #C87941;
}

.tkw-modal-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(45, 26, 10, 0.6);
   backdrop-filter: blur(8px);
   z-index: 10000;
   align-items: center;
   justify-content: center;
   padding: 20px;
}

.tkw-modal-overlay.active {
   display: flex;
}

.tkw-modal-content {
   background: #fff;
   border-radius: 20px;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
   width: 100%;
   max-width: 600px;
   max-height: 90vh;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   animation: tkwModalIn 0.4s ease forwards;
}

.tkw-modal-large {
   max-width: 80%;
}

@keyframes tkwModalIn {
   from {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
   }

   to {
      opacity: 1;
      transform: translateY(0) scale(1);
   }
}

.tkw-modal-header {
   padding: 24px 32px;
   border-bottom: 1px solid #eee;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.tkw-modal-header h3 {
   margin: 0;
   font-weight: 800;
   color: #2D1A0A;
   font-size: 1.4rem;
}

.tkw-modal-close {
   background: none;
   border: none;
   font-size: 2rem;
   color: #aaa;
   cursor: pointer;
   transition: color 0.3s;
}

.tkw-modal-close:hover {
   color: #C87941;
}

.tkw-modal-body {
   padding: 32px;
   overflow-y: auto;
   flex: 1;
}

.tkw-modal-footer {
   padding: 20px 32px;
   border-top: 1px solid #eee;
   display: flex;
   justify-content: flex-end;
   gap: 12px;
   background: #fdfdfd;
}

.tkw-edit-row {
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.tkw-edit-row.indent {
   padding-left: 40px;
}

.tkw-edit-input {
   flex: 1;
   background: #FDF8F3;
   border: 1px solid #EDD9C8;
   padding: 10px 16px;
   border-radius: 10px;
   font-family: inherit;
   font-size: 0.95rem;
   color: #2D1A0A;
   transition: all 0.3s;
}

.tkw-edit-input:focus {
   border-color: #C87941;
   outline: none;
   background: #fff;
   box-shadow: 0 0 0 4px rgba(200, 121, 65, 0.1);
}

.tkw-edit-row.main-item .tkw-edit-input {
   font-weight: 700;
   background: #F9EFE5;
   border-color: #D4A06A;
}

.tkw-btn-secondary {
   background: #f0f0f0;
   border: none;
   padding: 12px 24px;
   border-radius: 12px;
   font-weight: 700;
   cursor: pointer;
}

.tkw-btn-primary {
   background: #C87941;
   border: none;
   color: #fff;
   padding: 12px 24px;
   border-radius: 12px;
   font-weight: 700;
   cursor: pointer;
}

.tkw-btn-primary:hover {
   background: #A66032;
}

/* --- TESTIMONIALS --- */
.tkw-testimonials {
   padding: 80px 0;
   background: #FDF8F3
}

.tkw-testi-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px
}

.tkw-testi-card {
   background: #fff;
   border: 1px solid #EDD9C8;
   border-radius: 16px;
   padding: 28px;
   transition: all .3s
}

.tkw-testi-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 32px rgba(200, 121, 65, .12)
}

.tkw-testi-quote {
   font-size: .92rem;
   color: var(--text-muted);
   line-height: 1.7;
   margin-bottom: 20px;
   font-style: italic
}

.tkw-testi-author {
   display: flex;
   align-items: center;
   gap: 12px
}

.tkw-testi-avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: linear-gradient(135deg, #C87941, #E8A060);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 700;
   font-size: 1rem;
   flex-shrink: 0
}

.tkw-testi-name {
   font-weight: 700;
   font-size: .9rem;
   color: var(--text-light)
}

.tkw-testi-role {
   font-size: .8rem;
   color: var(--text-muted)
}

.tkw-testi-stars {
   color: #FFD700;
   font-size: .8rem;
   margin-bottom: 12px
}

/* --- CONTACT --- */
.tkw-contact {
   position: relative;
   padding: 100px 0 80px;
   overflow: hidden
}

.tkw-contact-bg {
   position: absolute;
   inset: 0;
   background: linear-gradient(160deg, #0A0502 0%, #1A0E05 40%, #2D1A0A 100%);
   z-index: 0
}

.tkw-contact-glow {
   position: absolute;
   border-radius: 50%;
   filter: blur(120px);
   z-index: 1
}

.tkw-contact-glow1 {
   width: 450px;
   height: 450px;
   background: radial-gradient(circle, rgba(200, 121, 65, .25) 0%, transparent 70%);
   top: -100px;
   right: 10%
}

.tkw-contact-glow2 {
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(232, 160, 96, .18) 0%, transparent 70%);
   bottom: -60px;
   left: 5%
}

/* Trust signals */
.tkw-contact-trust {
   display: flex;
   justify-content: center;
   gap: 32px;
   margin-bottom: 50px;
   flex-wrap: wrap
}

.tkw-trust-item {
   display: flex;
   align-items: center;
   gap: 12px;
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: 14px;
   padding: 14px 22px;
   backdrop-filter: blur(8px)
}

.tkw-trust-item i {
   font-size: 1.3rem;
   color: #E8A060;
   width: 40px;
   text-align: center
}

.tkw-trust-item strong {
   display: block;
   color: #fff;
   font-size: .88rem;
   font-weight: 600
}

.tkw-trust-item span {
   display: block;
   color: rgba(255, 255, 255, .45);
   font-size: .78rem
}

/* Grid */
.tkw-contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
   align-items: start
}

/* Channels */
.tkw-contact-channels {
   padding: 8px 0
}

.tkw-channels-title {
   font-size: 1.4rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 6px
}

.tkw-channel-card {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 16px 20px;
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: 14px;
   margin-bottom: 30px;
   text-decoration: none;
   transition: all .3s ease;
   cursor: pointer
}

.tkw-channel-card:hover {
   background: rgba(255, 255, 255, .08);
   border-color: rgba(200, 121, 65, .3);
   transform: translateX(6px)
}

.tkw-channel-icon {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   flex-shrink: 0
}

.tkw-channel-info {
   flex: 1
}

.tkw-channel-info strong {
   display: block;
   color: #fff;
   font-size: .92rem;
   font-weight: 600
}

.tkw-channel-info span {
   display: block;
   color: rgba(255, 255, 255, .45);
   font-size: .82rem
}

.tkw-channel-arrow {
   color: rgba(255, 255, 255, .2);
   transition: all .3s ease
}

.tkw-channel-card:hover .tkw-channel-arrow {
   color: #E8A060;
   transform: translateX(4px)
}

.tkw-working-hours {
   margin-top: 24px;
   padding: 16px 20px;
   border-radius: 12px;
   background: rgba(255, 255, 255, .04);
   border: 1px solid rgba(255, 255, 255, .06)
}

.tkw-wh-label {
   font-size: .8rem;
   color: rgba(255, 255, 255, .4);
   margin-bottom: 4px
}

.tkw-wh-value {
   color: rgba(255, 255, 255, .75);
   font-size: .9rem;
   margin: 0;
   font-weight: 500
}

/* Form */
.tkw-contact-form {
   background: #fff;
   border-radius: 24px;
   padding: 30px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, .2)
}

.tkw-form-header {
   margin-bottom: 10px
}

.tkw-form-header h3 {
   font-size: 1.3rem;
   font-weight: 700;
   color: #2D1A0A;
   margin-bottom: 8px
}

.tkw-form-header p {
   color: #8A7A6D;
   font-size: .9rem;
   margin: 0
}

.tkw-contact-form .tkw-form-group {
   margin-bottom: 10px
}

.tkw-contact-form label {
   display: block;
   font-size: .85rem;
   font-weight: 600;
   color: #5A4A3A;
   margin-bottom: 6px
}

.tkw-required {
   color: #E8A060
}

.tkw-contact-form .tkw-input,
.tkw-contact-form .tkw-textarea,
.tkw-contact-form select {
   width: 100%;
   padding: 12px 16px;
   border: 1.5px solid #EDD9C8;
   border-radius: 12px;
   font-size: .92rem;
   color: #2D1A0A;
   background: #FDFAF7;
   transition: all .25s ease;
   outline: none;
   font-family: inherit
}

.tkw-contact-form .tkw-input:focus,
.tkw-contact-form .tkw-textarea:focus,
.tkw-contact-form select:focus {
   border-color: #C87941;
   box-shadow: 0 0 0 3px rgba(200, 121, 65, .1);
   background: #fff
}

.tkw-contact-form .tkw-textarea {
   min-height: 100px;
   resize: vertical
}




.tkw-form-note {
   text-align: center;
   color: #B0A090;
   font-size: .78rem;
   margin-top: 0px;
   margin-bottom: 0
}

/* --- PARTNERS --- */
.tkw-partners {
   padding: 60px 0;
   background: #FDF8F3;
   overflow: hidden;
   text-align: center
}

.tkw-partner-swiper-wrap {
   padding: 10px 0 20px;
   width: 100%;
}

.tkw-partner-swiper {
   width: 100%;
   padding: 10px 0 40px !important;
}

.tkw-partner-swiper .swiper-slide {
   display: flex;
   justify-content: center;
   align-items: center;
}

.tkw-partner-frame {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   max-width: 180px;
   height: 90px;
   border: 1.5px solid #EDD9C8;
   border-radius: 16px;
   background: #fff;
   padding: 15px;
   transition: all .35s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tkw-partner-frame img {
   max-height: 44px;
   max-width: 130px;
   width: auto;
   height: auto;
   object-fit: contain;
   filter: grayscale(100%);
   opacity: .5;
   transition: all .35s ease
}

.tkw-partner-frame:hover {
   border-color: #C87941;
   box-shadow: 0 4px 16px rgba(200, 121, 65, .12);
   transform: translateY(-2px)
}

.tkw-partner-frame:hover img {
   filter: grayscale(0);
   opacity: 1
}

/* --- SUCCESS MODAL --- */
.tkw-modal-overlay {
   display: none;
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, .6);
   z-index: 9999;
   align-items: center;
   justify-content: center
}

.tkw-modal-overlay.show {
   display: flex
}

.tkw-modal {
   background: #fff;
   border-radius: 20px;
   padding: 48px;
   text-align: center;
   max-width: 420px;
   width: 90%;
   animation: tkwFadeIn .4s ease
}

.tkw-modal i {
   font-size: 3.5rem;
   color: #2E7D32;
   margin-bottom: 16px
}

.tkw-modal h3 {
   font-size: 1.3rem;
   font-weight: 700;
   margin-bottom: 8px;
   color: var(--text-light)
}

.tkw-modal p {
   color: var(--text-muted);
   font-size: .92rem;
   margin-bottom: 24px
}

#cta-section {
   padding-top: 0;
}

.tkw-partners {
   padding-bottom: 0;
}

/* --- RESPONSIVE --- */
@media(max-width:991px) {
   .tkw-float-cards {
      display: none
   }

   .tkw-hero {
      min-height: auto;
      padding: 60px 0
   }

   .tkw-hero-title {
      font-size: 2.2rem
   }

   .tkw-feat-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .tkw-type-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .tkw-addon-grid {
      grid-template-columns: 1fr
   }

   .tkw-port-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .tkw-testi-grid {
      grid-template-columns: 1fr
   }

   .tkw-contact-grid {
      grid-template-columns: 1fr
   }

   .tkw-contact-trust {
      gap: 12px
   }

   .tkw-trust-item {
      padding: 12px 16px;
      flex: 1;
      min-width: 200px
   }

   .tkw-recommend-cards {
      grid-template-columns: 1fr
   }

   .tkw-layout-options {
      grid-template-columns: repeat(2, 1fr)
   }

   .tkw-step-indicator span:not(.step-num) {
      display: none
   }
}

@media(max-width:575px) {
   .tkw-hero-title {
      font-size: 1.8rem
   }

   .tkw-hero-stats {
      flex-direction: column
   }

   .tkw-feat-grid {
      grid-template-columns: 1fr
   }

   .tkw-type-grid {
      grid-template-columns: 1fr 1fr
   }

   .tkw-progress {
      gap: 4px
   }

   .tkw-step-line {
      width: 20px
   }

   .tkw-step-indicator {
      padding: 10px 14px;
      font-size: .8rem
   }

   .tkw-layout-options {
      grid-template-columns: 1fr
   }

   .tkw-port-grid {
      grid-template-columns: 1fr
   }
}

/* Prompt Modal Items */
.tkw-prompt-item:hover {
   background: #FFF8F2 !important;
   border-color: #C87941 !important;
   box-shadow: 0 4px 12px rgba(200, 121, 65, 0.08);
   transform: translateY(-1px);
}

.tkw-prompts-list::-webkit-scrollbar {
   width: 6px;
}

.tkw-prompts-list::-webkit-scrollbar-track {
   background: #f1f1f1;
   border-radius: 4px;
}

.tkw-prompts-list::-webkit-scrollbar-thumb {
   background: #cbd5e0;
   border-radius: 4px;
}

.tkw-prompts-list::-webkit-scrollbar-thumb:hover {
   background: #a0aec0;
}

#tkw-show-prompts-btn:hover {
   background: #C87941 !important;
   color: #fff !important;
}

/* Toast Notifications */
.tkw-toast-container {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 9999;
   display: flex;
   flex-direction: column;
   gap: 12px;
   align-items: center;
}

.tkw-toast {
   background: #fff;
   border-left: 4px solid #dc3545;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
   padding: 16px 24px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   gap: 12px;
   transform: translateY(-20px);
   opacity: 0;
   transition: all 0.3s ease;
   max-width: 400px;
   min-width: 280px;
}

.tkw-toast.show {
   transform: translateY(0);
   opacity: 1;
}

.tkw-toast.error {
   border-left-color: #dc3545;
}

.tkw-toast.error i {
   color: #dc3545;
}

.tkw-toast.success {
   border-left-color: #C87941;
}

.tkw-toast.success i {
   color: #C87941;
}

.tkw-toast i {
   font-size: 1.25rem;
}

.tkw-toast-text {
   color: #333;
   font-size: 0.95rem;
   font-weight: 500;
   line-height: 1.4;
}