.woocommerce #main { width: 100%; float: left; }
.woocommerce .woocommerce-breadcrumb { margin-top: 1em !important; }
.product_meta span.sku_wrapper { margin-bottom: 10px; display: block; width: 100%; }
.woocommerce div.product .product_title { font-size: 20pt; color: #0075ab; }
.woocommerce ul.products li.product .button { background: #5331cc; background: linear-gradient(65deg,rgba(83, 49, 204, 1) 0%, rgba(201, 42, 167, 1) 100%); color: #fff; }
.woocommerce div.product form.cart .button { background: #5331cc; background: radial-gradient(circle, rgba(83, 49, 204, 1) 0%, rgba(201, 42, 167, 1) 100%); padding: 15px 12px; }
.woocommerce ul.products li.product .button:hover, .woocommerce div.product form.cart .button:hover { opacity: 0.8; }

.woocommerce div.product .woocommerce-tabs .panel { padding: 0 1em; }
.related.products h3 { background: #f6f6f6; font-size: 22pt; color: #0075ab; padding: 8px; border-left: 2px solid #0075ab; }
.woocommerce .woocommerce-ordering select { padding: 8px; background: #f8f8f8; border: 1px solid #ddd; box-shadow: 0 0 5px #ccc; }
.wp-block-woocommerce-cart-items-block, .wp-block-woocommerce-cart-totals-block { background: #f8f8f8; padding: 12px; box-shadow: 0 0 5px #ccc; border-radius: 10px; border: 1px solid #ccc; }
.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main { background: #f5f5f5; margin: 0 3% 0 0; width: 62%; }
.wc-block-components-button:not(.is-link) { background: #0075ab; color: #fff; }
.wc-block-components-formatted-money { color: ##cd6417; }
.woocommerce-MyAccount-navigation ul, .woocommerce-MyAccount-content { background: #f5f5f5; padding: 10px; border: 1px solid #ccc; border-radius: 8px; box-shadow: 0 0 5px #ccc; }
.woocommerce-MyAccount-navigation ul { background: linear-gradient(135deg, rgb(255 248 243) 0%, rgb(216 229 243) 100%); }
.woocommerce-MyAccount-navigation ul li a { padding: 12px 0; border-bottom: 1px solid #ddd; display: block; }
.woocommerce-MyAccount-navigation ul li:last-child a { margin-bottom: 0; border-bottom: 0; }
.woocommerce-MyAccount-navigation ul li a:hover { padding-left: 8px; }
.woocommerce-page .col2-set .col-1, .woocommerce-page .col2-set .col-2 { width: 100% !important; padding: 8px; background: #eee; background: linear-gradient(135deg, rgb(255 254 243) 0%, rgb(236 245 255) 100%); }
.woocommerce-page .col2-set .col-1 { border-bottom: 1px solid #ddd;}
.woocommerce-MyAccount-content h2 { font-size: 20pt; color: #002E51; }

/* Header */
.kap-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--kap-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--kap-blue);
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.main-nav a:hover {
    color: orange; /* Màu bổ trợ cho vàng */
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(rgba(0, 86, 153, 0.8), rgba(0, 86, 153, 0.8)), 
                url('https://images.unsplash.com/photo-1513519245088-0e12902e35ca?auto=format&fit=crop&q=80&w=1200') no-repeat center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.btn-primary {
    background: var(--kap-yellow);
    color: var(--kap-blue);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #e6d700;
}

/* Product Grid */
.section-title {
    text-align: center;
    margin: 50px 0;
    color: var(--kap-blue);
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--kap-yellow);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    display: block;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 2px 10px;
    font-size: 0.8rem;
    border-radius: 3px;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin: 10px 0;
}

.price {
    color: var(--kap-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.add-to-cart {
    background: var(--kap-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #003d6d;
}


/* Features Section */
.kap-features {
    padding: 80px 0;
    background: #fdfdfd;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--kap-blue);
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--kap-yellow);
}

.feature-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* CTA Mid Page */
.cta-mid-page {
    background: var(--kap-blue);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.cta-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-image img {
    border-radius: 15px;
    max-width: 280px;
    border: 5px solid var(--kap-yellow);
}

.cta-text span {
    color: var(--kap-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-outline {
    border: 2px solid var(--kap-yellow);
    color: var(--kap-yellow);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--kap-yellow);
    color: var(--kap-blue);
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
}

.step {
    text-align: center;
    position: relative;
    flex: 1;
}

.step span {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 86, 153, 0.1);
    line-height: 1;
}

.step p {
    margin-top: -20px;
    font-weight: bold;
    color: var(--kap-blue);
}

/* Contact Footer */
.kap-contact-footer {
    padding: 80px 0;
    background: #eee;
}

.contact-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.contact-info h2 { font-size: 16pt; }

.hotline-big a {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--kap-blue);
    text-decoration: none;
}

.contact-form-mini input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .contact-box, .cta-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .cta-flex { justify-content: center; }
    .process-steps { padding: 30px 12px; }
    .quick-product { padding: 0 2%; }
}