/* ==========================================================================
   Kims Nest UX Plugin - Full Styles
   Phân vùng Font: Kế thừa 100% Font Lora đã có sẵn trên Website
   ========================================================================== */

/* ÉP BUỘC TOÀN BỘ PLUGIN DÙNG FONT LORA / INHERIT CỦA WEBSITE */
[class^="kims-"],
[class^="kims-"] * {
    font-family: inherit !important;
}

/* ==========================================================================
   SECTION 1: GIẢI ĐÁP VỀ TỔ YẾN (FAQ ACCORDION STYLES)
   ========================================================================== */

.kims-faq-section-wrapper {
    position: relative;
    width: 100%;
    background-color: #FAF7F2;
    background-image: radial-gradient(circle at 50% 20%, #FFFDF9 0%, #FAF7F2 85%);
    padding: 65px 20px 45px 20px;
    box-sizing: border-box;
    overflow: hidden;
    color: #2C1A11;
}

.kims-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kims-faq-bird-decor {
    position: absolute;
    top: 25px;
    left: 4%;
    pointer-events: none;
    z-index: 1;
}

.kims-faq-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.kims-faq-top-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.kims-faq-top-ornament .line {
    width: 45px;
    height: 1px;
    background: #B68641;
    display: inline-block;
}

.kims-faq-top-ornament .tagline {
    font-size: 0.78rem;
    font-weight: 700;
    color: #B68641;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.kims-faq-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2E1A0E;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    line-height: 1.25;
}

.kims-faq-subtitle {
    font-size: 0.95rem;
    color: #6E5A4C;
    line-height: 1.55;
    margin-bottom: 12px;
}

.kims-faq-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #B68641;
}

/* FAQ 2 Columns Accordion Grid */
.kims-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 45px;
}

.kims-faq-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(225, 210, 190, 0.55);
    box-shadow: 0 4px 18px rgba(180, 150, 120, 0.06);
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: fit-content;
}

.kims-faq-card:hover {
    box-shadow: 0 8px 25px rgba(160, 130, 90, 0.12);
    border-color: rgba(197, 155, 95, 0.6);
}

.kims-faq-question-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    outline: none;
}

.kims-faq-badge-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.kims-faq-num-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #C59B5F;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(197, 155, 95, 0.3);
    flex-shrink: 0;
}

.kims-faq-icon-art {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kims-faq-question-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2E1A0E;
    margin: 0;
    flex-grow: 1;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.kims-faq-question-header:hover .kims-faq-question-title {
    color: #B68641;
}

.kims-faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(197, 155, 95, 0.12);
    color: #B68641;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.kims-faq-toggle-icon .icon-plus {
    display: block;
}

.kims-faq-toggle-icon .icon-minus {
    display: none;
}

/* Active State Accordion Expand */
.kims-faq-card.active {
    border-color: #C59B5F;
    box-shadow: 0 8px 26px rgba(197, 155, 95, 0.16);
}

.kims-faq-card.active .kims-faq-question-title {
    color: #B68641;
}

.kims-faq-card.active .kims-faq-toggle-icon {
    background: #C59B5F;
    color: #FFFFFF;
}

.kims-faq-card.active .kims-faq-toggle-icon .icon-plus {
    display: none;
}

.kims-faq-card.active .kims-faq-toggle-icon .icon-minus {
    display: block;
}

.kims-faq-answer-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.kims-faq-card.active .kims-faq-answer-body {
    max-height: 500px;
    padding-top: 14px;
    opacity: 1;
}

.kims-faq-answer-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #5C4A3E;
    border-top: 1px dashed rgba(225, 210, 190, 0.6);
    padding-top: 12px;
}

/* Bottom Banner Card (Nguồn kiến thức đáng tin cậy) */
.kims-faq-banner-card {
    background: #FAF2E6;
    border: 1px solid rgba(225, 200, 165, 0.7);
    border-radius: 18px;
    padding: 26px 30px;
    box-shadow: 0 6px 25px rgba(180, 150, 120, 0.08);
    margin-bottom: 24px;
}

.kims-faq-banner-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    align-items: center;
}

.kims-faq-banner-text-col {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.kims-faq-book-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kims-faq-banner-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2E1A0E;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.kims-faq-banner-desc {
    font-size: 0.83rem;
    line-height: 1.55;
    color: #6E5A4C;
    margin: 0;
}

.kims-faq-banner-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.kims-faq-fitem {
    text-align: center;
}

.kims-faq-ficon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(197, 155, 95, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px auto;
    box-shadow: 0 2px 6px rgba(197, 155, 95, 0.1);
}

.kims-faq-flabel {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2E1A0E;
    line-height: 1.3;
}

.kims-faq-flabel small {
    font-size: 0.68rem;
    font-weight: 400;
    color: #6E5A4C;
    display: block;
}

.kims-faq-footer-thank {
    text-align: center;
    font-size: 0.9rem;
    color: #6E5A4C;
    font-weight: 600;
}

.kims-faq-footer-thank .heart {
    color: #B68641;
    font-size: 1.1rem;
}

/* ==========================================================================
   SECTION: SẢN PHẨM NỔI BẬT WOOCOMMERCE STYLES
   ========================================================================== */

.kims-product-section-wrapper {
    position: relative;
    width: 100%;
    background-color: #FAF7F2;
    background-image: radial-gradient(circle at 50% 20%, #FFFDF9 0%, #FAF7F2 85%);
    padding: 65px 20px;
    box-sizing: border-box;
    overflow: hidden;
    color: #2C1A11;
}

.kims-product-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kims-product-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.kims-product-top-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.kims-product-top-ornament .line {
    width: 45px;
    height: 1px;
    background: #B68641;
    display: inline-block;
}

.kims-product-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2E1A0E;
    letter-spacing: 2px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    line-height: 1.25;
}

.kims-product-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #B68641;
}

/* Products 4 Columns Grid */
.kims-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.kims-product-card {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(180, 150, 120, 0.08);
    border: 1px solid rgba(225, 210, 190, 0.45);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.kims-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(160, 130, 90, 0.16);
}

.kims-product-thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #F8F4EE;
}

.kims-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kims-product-card:hover .kims-product-thumb img {
    transform: scale(1.06);
}

.kims-product-info {
    padding: 22px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.kims-product-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.kims-product-title a {
    color: #2E1A0E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kims-product-title a:hover {
    color: #B68641;
}

.kims-product-excerpt {
    color: #6E5A4C;
    font-size: 0.83rem;
    line-height: 1.5;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kims-product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2E1A0E;
    margin-bottom: 16px;
}

.kims-product-price .woocommerce-Price-amount,
.kims-product-price amount {
    color: #2E1A0E;
    font-weight: 700;
}

.kims-product-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid #C59B5F;
    background: #FFFFFF;
    color: #7A5220;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(197, 155, 95, 0.1);
}

.kims-product-buy-btn:hover {
    background: #C59B5F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 155, 95, 0.3);
}

/* Bottom Guarantee 4 Badges Row */
.kims-product-guarantee-grid {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 26px 30px;
    border: 1px solid rgba(225, 210, 190, 0.5);
    box-shadow: 0 4px 22px rgba(180, 150, 120, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.kims-guarantee-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kims-guarantee-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kims-guarantee-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2E1A0E;
    text-transform: uppercase;
    margin: 0 0 4px 0;
    letter-spacing: 0.3px;
}

.kims-guarantee-desc {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #6E5A4C;
    margin: 0;
}

/* ==========================================================================
   SECTION 2: CẨM NANG YẾN STYLES
   ========================================================================== */

.kims-blog-section-wrapper {
    position: relative;
    width: 100%;
    background-color: #FAF7F2;
    background-image: radial-gradient(circle at 50% 20%, #FFFDF9 0%, #FAF7F2 85%);
    padding: 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
    color: #2C1A11;
}

.kims-decor-bird {
    position: absolute;
    top: 40px;
    width: 110px;
    height: 75px;
    pointer-events: none;
    z-index: 1;
}

.kims-decor-bird-left {
    left: 6%;
}

.kims-decor-bird-right {
    right: 6%;
    transform: scaleX(-1);
}

.kims-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kims-blog-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.kims-blog-top-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.kims-blog-top-ornament .line {
    width: 35px;
    height: 1px;
    background: #B68641;
    display: inline-block;
}

.kims-blog-main-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2E1A0E;
    letter-spacing: 2px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    line-height: 1.25;
}

.kims-blog-sub-title {
    font-size: 1.05rem;
    color: #635043;
    margin: 0 0 12px 0;
    font-weight: 400;
}

.kims-blog-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #B68641;
}

.kims-blog-top-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    margin-bottom: 24px;
}

.kims-blog-hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 490px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(60, 35, 15, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kims-blog-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(60, 35, 15, 0.2);
}

.kims-blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.kims-blog-hero-card:hover .kims-blog-hero-bg {
    transform: scale(1.04);
}

.kims-blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(22, 11, 5, 0.94) 0%, rgba(22, 11, 5, 0.55) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.kims-blog-hero-badge {
    position: relative;
    z-index: 3;
}

.kims-blog-hero-badge span {
    background: rgba(225, 195, 150, 0.92);
    color: #5C3D12;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.kims-blog-hero-content {
    position: relative;
    z-index: 3;
}

.kims-blog-hero-title {
    font-size: 1.7rem;
    line-height: 1.38;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.kims-blog-hero-title a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kims-blog-hero-title a:hover {
    color: #F3D098;
}

.kims-blog-hero-excerpt {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 18px 0;
    max-width: 95%;
}

.kims-blog-hero-btn {
    background: #B68641;
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.kims-blog-hero-btn:hover {
    background: #9B6F30;
    color: #FFFFFF;
    transform: translateX(3px);
}

.kims-blog-side-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.kims-blog-side-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 14px;
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 16px;
    align-items: center;
    box-shadow: 0 4px 18px rgba(180, 150, 120, 0.08);
    border: 1px solid rgba(225, 210, 190, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kims-blog-side-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(160, 130, 90, 0.14);
}

.kims-blog-side-thumb {
    width: 145px;
    height: 115px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #F0E6D8;
}

.kims-blog-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kims-blog-side-card:hover .kims-blog-side-thumb img {
    transform: scale(1.07);
}

.kims-blog-side-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kims-blog-badge {
    color: #B68641;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 4px;
}

.kims-blog-side-title {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px 0;
}

.kims-blog-side-title a {
    color: #2E1A0E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kims-blog-side-title a:hover {
    color: #B68641;
}

.kims-blog-side-excerpt {
    color: #6E5A4C;
    font-size: 0.82rem;
    line-height: 1.45;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kims-blog-link {
    color: #B68641;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.kims-blog-link:hover {
    color: #8C612B;
}

.kims-blog-link .arrow {
    transition: transform 0.2s ease;
}

.kims-blog-link:hover .arrow {
    transform: translateX(4px);
}

.kims-blog-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.kims-blog-grid-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(180, 150, 120, 0.08);
    border: 1px solid rgba(225, 210, 190, 0.45);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kims-blog-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(160, 130, 90, 0.15);
}

.kims-blog-grid-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: #F0E6D8;
}

.kims-blog-grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kims-blog-grid-card:hover .kims-blog-grid-thumb img {
    transform: scale(1.07);
}

.kims-blog-grid-info {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kims-blog-grid-info .kims-blog-badge {
    background: rgba(225, 195, 150, 0.35);
    color: #8C612B;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    width: fit-content;
    margin-bottom: 8px;
}

.kims-blog-grid-title {
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px 0;
}

.kims-blog-grid-title a {
    color: #2E1A0E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kims-blog-grid-title a:hover {
    color: #B68641;
}

.kims-blog-grid-excerpt {
    color: #6E5A4C;
    font-size: 0.83rem;
    line-height: 1.45;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kims-blog-grid-info .kims-blog-link {
    margin-top: auto;
}

.kims-blog-footer {
    text-align: center;
}

.kims-blog-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1.5px solid #C59B5F;
    color: #7A5220;
    padding: 12px 34px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(197, 155, 95, 0.12);
    transition: all 0.3s ease;
}

.kims-blog-btn-all:hover {
    background: #C59B5F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 155, 95, 0.3);
}

.kims-blog-btn-all svg path {
    transition: stroke 0.3s ease;
}

.kims-blog-btn-all:hover svg path {
    stroke: #FFFFFF;
}

.kims-blog-no-posts {
    text-align: center;
    color: #6E5A4C;
    font-size: 1.1rem;
    padding: 40px 0;
}

/* ==========================================================================
   SECTION 3: CÂU CHUYỆN KIM'S NEST STYLES
   ========================================================================== */

.kims-story-section-wrapper {
    position: relative;
    width: 100%;
    background-color: #FAF7F2;
    background-image: radial-gradient(circle at 50% 30%, #FFFDF9 0%, #FAF7F2 85%);
    padding: 70px 20px;
    box-sizing: border-box;
    color: #2C1A11;
}

.kims-story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.kims-story-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.kims-story-image-col {
    width: 100%;
}

.kims-story-img-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(60, 35, 15, 0.1);
    background: #F0E6D8;
    position: relative;
}

.kims-story-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.1 / 1;
    transition: transform 0.6s ease;
}

.kims-story-img-wrap:hover img {
    transform: scale(1.03);
}

.kims-story-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kims-story-tagline {
    font-size: 0.78rem;
    font-weight: 700;
    color: #B68641;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.kims-story-title {
    font-size: 2.15rem;
    line-height: 1.35;
    font-weight: 700;
    color: #2E1A0E;
    margin: 0 0 18px 0;
}

.kims-story-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5C4A3E;
    margin-bottom: 28px;
}

.kims-story-description p {
    margin: 0 0 12px 0;
}

.kims-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B68641;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(182, 134, 65, 0.25);
    width: fit-content;
}

.kims-story-btn:hover {
    background: #9B6F30;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(182, 134, 65, 0.38);
}

.kims-story-btn .arrow {
    transition: transform 0.2s ease;
}

.kims-story-btn:hover .arrow {
    transform: translateX(4px);
}

.kims-story-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 119, 0.3);
}

.kims-story-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.kims-story-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kims-story-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2E1A0E;
    margin: 0 0 6px 0;
}

.kims-story-feature-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #6E5A4C;
    margin: 0;
}

/* ==========================================================================
   SECTION 4: FOOTER CHÂN TRANG 4 CỘT STYLES
   ========================================================================== */

.kims-footer-wrapper {
    width: 100%;
    background-color: #15241B;
    background-image: radial-gradient(circle at 50% 0%, #1D3125 0%, #15241B 90%);
    padding: 60px 20px 30px 20px;
    box-sizing: border-box;
    color: #D8C8B4;
    position: relative;
    overflow: hidden;
}

.kims-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kims-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.kims-footer-col {
    display: flex;
    flex-direction: column;
}

.kims-footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.kims-footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #C4B49F;
    margin: 0 0 20px 0;
}

.kims-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kims-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #D8C8B4;
    line-height: 1.45;
}

.kims-footer-contact li .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.kims-footer-contact a {
    color: #D8C8B4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.kims-footer-contact a:hover {
    color: #C59B5F;
}

.kims-footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197, 155, 95, 0.3);
    display: inline-block;
    width: fit-content;
}

.kims-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kims-footer-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #D8C8B4;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.kims-footer-menu li a:hover {
    color: #C59B5F;
    transform: translateX(4px);
}

.kims-footer-menu li a .arrow {
    color: #C59B5F;
    font-weight: 700;
    font-size: 0.82rem;
}

.kims-footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.kims-footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(197, 155, 95, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D8C8B4;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.kims-footer-social-icons a:hover {
    background: #C59B5F;
    color: #15241B;
    border-color: #C59B5F;
    transform: translateY(-3px);
}

.kims-footer-social-icons .zalo-text {
    font-size: 0.72rem;
    font-weight: 700;
}

.kims-footer-news-desc {
    font-size: 0.85rem;
    color: #C4B49F;
    margin: 0 0 12px 0;
}

/* NEWSLETTER FORM - PERFECT ALIGNMENT FIX */
.kims-footer-wrapper .kims-footer-newsletter-wrap {
    width: 100% !important;
    max-width: 360px !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(10, 20, 14, 0.7) !important;
    border: 1px solid rgba(197, 155, 95, 0.5) !important;
    border-radius: 12px !important;
    padding: 4px !important;
    margin: 0 !important;
    width: 100% !important;
    height: 52px !important;
    box-sizing: border-box !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form * {
    box-sizing: border-box !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form input[type="email"],
.kims-footer-wrapper .kims-footer-newsletter-form input {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 12px !important;
    margin: 0 !important;
    height: 44px !important;
    line-height: 44px !important;
    color: #FFFFFF !important;
    font-size: 0.88rem !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form input[type="email"]::placeholder,
.kims-footer-wrapper .kims-footer-newsletter-form input::placeholder {
    color: rgba(216, 200, 180, 0.55) !important;
    opacity: 1 !important;
    line-height: 44px !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form button {
    background: #C59B5F !important;
    color: #15241B !important;
    border: none !important;
    border-radius: 8px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    flex: 0 0 44px !important;
    align-self: center !important;
    line-height: 1 !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form button span {
    font-size: 1.25rem !important;
    font-weight: bold !important;
    line-height: 1 !important;
    display: inline-block !important;
    color: #15241B !important;
}

.kims-footer-wrapper .kims-footer-newsletter-form button:hover {
    background: #E5B775 !important;
    transform: scale(1.05) !important;
}

.kims-newsletter-msg {
    font-size: 0.82rem;
    margin-top: 8px;
    display: none;
    line-height: 1.4;
    padding: 6px 10px;
    border-radius: 6px;
}

.kims-newsletter-msg.success {
    color: #85E3A0;
    background: rgba(40, 100, 50, 0.3);
    border: 1px solid rgba(133, 227, 160, 0.4);
}

.kims-newsletter-msg.error {
    color: #FF9B9B;
    background: rgba(100, 40, 40, 0.3);
    border: 1px solid rgba(255, 155, 155, 0.4);
}

.kims-footer-bottom {
    border-top: 1px solid rgba(229, 212, 188, 0.15);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kims-footer-copyright {
    font-size: 0.82rem;
    color: #A0907C;
    margin: 0;
}

.kims-back-to-top {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(197, 155, 95, 0.6);
    background: transparent;
    color: #C59B5F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.kims-back-to-top:hover {
    background: #C59B5F;
    color: #15241B;
    transform: translateY(-3px);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .kims-faq-grid {
        grid-template-columns: 1fr;
    }

    .kims-faq-banner-grid {
        grid-template-columns: 1fr;
    }

    .kims-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kims-product-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .kims-blog-top-grid {
        grid-template-columns: 1fr;
    }

    .kims-blog-hero-card {
        min-height: 400px;
    }

    .kims-blog-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kims-story-top-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .kims-story-title {
        font-size: 1.85rem;
    }

    .kims-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .kims-faq-banner-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .kims-story-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .kims-faq-section-wrapper,
    .kims-product-section-wrapper,
    .kims-blog-section-wrapper,
    .kims-story-section-wrapper,
    .kims-footer-wrapper {
        padding: 40px 15px;
    }

    .kims-faq-main-title {
        font-size: 1.85rem;
    }

    .kims-product-grid {
        grid-template-columns: 1fr;
    }

    .kims-product-guarantee-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .kims-product-main-title {
        font-size: 1.85rem;
    }

    .kims-blog-main-title {
        font-size: 1.85rem;
    }

    .kims-blog-sub-title {
        font-size: 0.95rem;
    }

    .kims-blog-side-card {
        grid-template-columns: 110px 1fr;
        padding: 10px;
        gap: 12px;
    }

    .kims-blog-side-thumb {
        width: 110px;
        height: 95px;
    }

    .kims-blog-side-title {
        font-size: 1.05rem;
    }

    .kims-blog-bottom-grid {
        grid-template-columns: 1fr;
    }

    .kims-decor-bird {
        display: none;
    }

    .kims-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kims-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}