:root {
    --primary-color: #d07a70;
    --primary-hover: #99463f;
    --dark-color: #111111;
    --gray-color: #666666;
    --light-bg: #f9f9f9;
    --border-color: #eeeeee;
    --max-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 1. INDEX GENERAL --- */
.hz-home-wrapper {
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}
.hz-home-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hz-section-full {
    width: 100%;
    padding: 80px 0;
    position: relative;
}

.hz-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hz-sec-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.hz-sec-header .hz-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.hz-sec-header .hz-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.hz-sec-header .hz-desc {
    color: var(--gray-color);
    font-size: 16px;
}

.hz-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--dark-color);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--dark-color);
    cursor: pointer;
}

.hz-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 157, 151, 0.3);
}

.hz-btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hz-btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- 2. HERO SECTION --- */
.hz-hero {
    background-image: linear-gradient(135deg, rgba(17, 17, 17, 0.45) 0%, rgba(34, 34, 34, 0.95) 100%), 
                      url('https://hawyonnail.com/wp-content/uploads/2026/07/nails-bg-scaled.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
    padding: 140px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hz-hero::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 85%;
    background-image: url('https://hawyonnail.com/wp-content/uploads/2026/06/index-hero-right.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.85;
    transition: var(--transition);
    z-index: 1;
}

.hz-hero-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.hz-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
    color: #ffffff !important; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hz-hero-content h1 span {
    color: var(--primary-color) !important;
}

.hz-hero-content p {
    font-size: 17px;
    color: #e2e8f0 !important; 
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hz-hero-btns .hz-btn {
    margin-right: 15px;
}

/* --- 3. ADVANTAGES GRID --- */
.hz-advantages {
    background-color: #ffffff;
}

.hz-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hz-adv-card {
    background: var(--light-bg);
    padding: 40px 25px;
    border-radius: 6px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.hz-adv-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    background: #ffffff;
}

.hz-adv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: rgba(211, 157, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
}

.hz-adv-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.hz-adv-card p {
    font-size: 14px;
    color: var(--gray-color);
}

/* --- 4. QUALITY FOCUS --- */
.hz-quality {
    background-color: var(--light-bg);
}

.hz-split-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hz-split-col {
    flex: 1;
}

.hz-img-placeholder {
    width: 100%;
    height: 480px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    background-image: url('https://hawyonnail.com/wp-content/uploads/2026/07/factory.webp');
    background-size: cover;
    background-position: center;
}

.hz-split-content .hz-tag {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.hz-split-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hz-split-content p {
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 16px;
}

.hz-counter-row {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.hz-counter-item h4 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.hz-counter-item p {
    font-size: 13px;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* --- 5. PRODUCTS --- */
.hz-products {
    background-color: #ffffff;
}

.hz-woo-grid-mock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hz-product-card-mock {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    transition: var(--transition);
    position: relative;
}

.hz-product-card-mock:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.hz-p-img {
    width: 100%;
    height: 240px;
    background-color: #f1f5f9;
    margin-bottom: 15px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
}

.hz-p-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.hz-p-moq {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.hz-p-action {
    display: block;
    text-align: center;
    background: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.hz-product-card-mock:hover .hz-p-action {
    background: var(--primary-color);
}

/* --- 6. SERVICE PROCESS --- */
.hz-process {
    background-image: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.90) 100%), url('https://hawyonnail.com/wp-content/uploads/2026/06/custom-press-on-nails-oem-odm-factory-supply-chain.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; 
    color: #ffffff;
}

.hz-process .hz-title {
    color: #ffffff;
}

.hz-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.hz-process-node {
    text-align: center;
    position: relative;
}

.hz-node-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(211, 157, 151, 0.75);
    line-height: 1;
    margin-bottom: 10px;
    transition: var(--transition);
}

.hz-process-node:hover .hz-node-num {
    color: var(--primary-color);
    transform: scale(1.1);
}

.hz-process-node h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.hz-process-node p {
    font-size: 14px;
    color: #aaaaaa;
}

/* --- 7. FAQ SECTION --- */
.hz-faq {
    background-color: var(--light-bg);
}

.hz-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.hz-faq-item {
    background: #ffffff;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    overflow: hidden;
}

.hz-faq-trigger {
    padding: 22px 30px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hz-faq-trigger:hover, .hz-faq-trigger:focus{
    color: #ffffff;
    background-color: var(--ast-global-color-1);
    border-color: var(--ast-global-color-0);
}

.hz-faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.hz-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
    color: var(--gray-color);
    font-size: 15px;
}

.hz-faq-item.active .hz-faq-content {
    max-height: 500px;
    padding-bottom: 22px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.hz-faq-item.active .hz-faq-icon {
    transform: rotate(45deg);
}

/* --- 8. INQUIRY / WPFORMS MOCK --- */
.hz-inquiry {
    background: #ffffff;
}

.hz-form-container-mock {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.hz-mock-form-group {
    margin-bottom: 20px;
}

.hz-mock-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hz-mock-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition);
}

.hz-mock-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 157, 151, 0.15);
}

/* --- 9. CONTACT FORM 7 STYLE PACK --- */
.hz-cf7-wrapper {
    width: 100%;
    margin: 0 auto;
}
.hz-cf7-group {
    margin-bottom: 18px;
    text-align: left;
}
.hz-cf7-wrapper label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    margin-bottom: 6px !important;
}

.hz-cf7-wrapper input[type="text"],
.hz-cf7-wrapper input[type="email"],
.hz-cf7-wrapper select,
.hz-cf7-wrapper textarea {
    width: 100% !important;
    padding: 2px 14px !important;
    font-size: 14px !important;
    color: #111111 !important;
    background-color: #fafafa !important;
    border: 1px solid #dddddd !important;
    border-radius: 4px !important;
    transition: var(--transition) !important;
    box-sizing: border-box !important;
}

.hz-cf7-wrapper input:focus,
.hz-cf7-wrapper select:focus,
.hz-cf7-wrapper textarea:focus {
    border-color: #d07a70 !important;
    background-color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(211, 157, 151, 0.15) !important;
}

.hz-cf7-wrapper textarea,
.hz-popup-box textarea {
    min-height: 80px !important;
    height: 80px !important;
    resize: none !important;
}

.hz-cf7-submit-zone {
    margin-top: 20px;
    width: 100%;
}

.hz-cf7-wrapper input[type="submit"] {
    width: 100% !important;
    padding: 13px !important;
    background-color: #d07a70 !important;
    color: #ffffff !important; 
    border: none !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    box-shadow: 0 4px 15px rgba(211, 157, 151, 0.3) !important;
    -webkit-appearance: none; 
}

.hz-cf7-wrapper input[type="submit"]:hover {
    background-color: #b8827c !important; 
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(211, 157, 151, 0.4) !important;
}

.hz-cf7-wrapper .wpcf7-not-valid-tip {
    color: #ff4d4f !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

.wpcf7-response-output {
    border-radius: 4px !important;
    padding: 12px !important;
    font-size: 14px !important;
    margin: 15px 0 0 0 !important;
    text-align: center !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #c3e6cb !important;
    background-color: #d4edda !important;
    color: #155724 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
    border: 1px solid #f5c6cb !important;
    background-color: #f8d7da !important;
    color: #721c24 !important;
}

/* --- 10. B2B GLOBAL POP-UP MODAL (PERFECT RESPONSIVE) --- */
#hz-quote-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(5px); 
    z-index: 999999 !important;  
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px; 
}

#hz-quote-overlay.hz-overlay-active {
    opacity: 1;
    pointer-events: auto;
}

.hz-popup-box {
    background-color: #ffffff;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 40px) !important;
    overflow-y: auto !important; 
    padding: 40px 30px 30px 30px !important;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hz-popup-box::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#hz-quote-overlay.hz-overlay-active .hz-popup-box {
    transform: translateY(0);
}

#hz-popup-close {
    position: absolute;
    top: 12px !important;
    right: 16px !important;
    background: none !important;
    border: none !important;
    font-size: 28px !important;
    color: #666666 !important;
    cursor: pointer !important;
    line-height: 1 !important;
    opacity: 0.6;
    transition: var(--transition) !important;
}

#hz-popup-close:hover {
    color: var(--primary-color) !important; 
    opacity: 1;
}

.hz-popup-box h3 {
    font-size: 24px;
    color: #111111 !important;
    font-weight: 800;
    margin-bottom: 6px;
    text-align: center;
}

.hz-popup-subtitle {
    font-size: 13px;
    color: #666666;
    text-align: center;
    margin-bottom: 22px;
}

/* --- 11. RIGHT FIXED SIDE TOOLBAR (SVG BUG FIX) --- */
.hz-side-toolbar {
    position: fixed;
    right: 25px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}


.hz-toolbar-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #d07a70 !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    padding: 0;
    text-decoration: none !important;
}

.hz-toolbar-item svg {
    width: 22px;
    height: 22px;
    fill: none !important;
    stroke: #ffffff !important;
    transition: transform 0.3s ease;
}

.hz-wa-btn svg {
    fill: #25D366 !important;
    stroke: none !important;
}

.hz-toolbar-item:hover {
    background-color: #be675d !important; 
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}

.hz-toolbar-item:hover svg {
    stroke: #ffffff !important;
}

.hz-toolbar-item.item-gotop {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}
.hz-toolbar-item.item-gotop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.hz-toolbar-item.item-gotop.is-visible:hover {
    transform: translateY(-3px) scale(1);
}

/* ---------- WhatsApp Floating Box ---------- */
.item-whatsapp {
    position: relative;
}
.hz-wa-trigger {
    width: 100%;
    height: 100%;
    background: transparent !important;
    border: none !important;
    color: inherit !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.hz-wa-popup {
    position: absolute;
    right: 60px;
    bottom: -5px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    padding: 16px 20px;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.item-whatsapp.is-active .hz-wa-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}
.hz-wa-popup-title {
    font-size: 14px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 500;
    text-align: left;
}
.hz-wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: #666666 !important;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.hz-wa-btn:hover {
    color: #25D366 !important;
}

/* --- 12. GLOBAL LAYOUT RESPONSIVE GRIDS --- */
@media (max-width: 992px) {
    .hz-hero {
        padding: 80px 0;
    }
    .hz-hero::after {
        display: none;
    }
    .hz-hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hz-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hz-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hz-split-row {
        flex-direction: column;
        gap: 40px;
    }
    .hz-woo-grid-mock {
        grid-template-columns: repeat(2, 1fr);
    }
    .hz-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .hz-side-toolbar {
        right: 15px;
        bottom: 25px;
        gap: 10px;
    }
    .hz-toolbar-item {
        width: 40px;
        height: 40px;
    }
    .hz-toolbar-item svg {
        width: 18px;
        height: 18px;
    }
    .hz-wa-popup {
        right: 52px;
        bottom: 0;
        width: 200px;
        padding: 12px 15px;
    }
    .hz-wa-popup-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .hz-wa-btn {
        font-size: 14px;
    }
    .hz-wa-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hz-popup-box {
        padding: 30px 20px 20px 20px !important;
        width: 100%;
    }
    .hz-popup-box h3 {
        font-size: 20px;
    }
    .hz-popup-subtitle {
        margin-bottom: 15px;
    }
    .hz-cf7-group {
        margin-bottom: 12px;
    }
    .hz-cf7-wrapper input[type="text"],
    .hz-cf7-wrapper input[type="email"],
    .hz-cf7-wrapper select,
    .hz-cf7-wrapper textarea {
        padding: 9px 12px !important;
        font-size: 14px !important; 
    }
}

@media (max-width: 576px) {
    .hz-sec-header .hz-title {
        font-size: 28px;
    }
    .hz-hero-content h1 {
        font-size: 32px;
    }
    .hz-adv-grid {
        grid-template-columns: 1fr;
    }
    .hz-woo-grid-mock {
        grid-template-columns: 1fr;
    }
    .hz-process-grid {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .ast-custom-button {
        white-space: nowrap !important; 
        padding-left: 14px !important; 
        padding-right: 14px !important;        
	font-size: 14px !important;   
 }

    .main-header-menu .menu-link, .main-header-menu>a {
    text-decoration: none;
    padding: 0 .3em;
	}

.ast-header-button-1[data-section*="section-hb-button-"] .ast-builder-button-wrap .ast-custom-button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 6px;
    padding-right: 6px;
}
}