* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f6f8fb;
    color: #222;
}



/* HERO */
.hero {
    background: linear-gradient(135deg, #0f2a44, #173b63);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 34px;
    background: #ffffff;
    color: #173b63;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 22px;
    border: 1px solid #173b63;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    color: #173b63;
}

/* CATEGORY BAR */
.cpg-category-bar {
    background: #0f2a44;
    position: sticky;
    top: 0;
    z-index: 99;
}

.cpg-tabs {
    display: flex;
    gap: 12px;
    padding: 16px;
    overflow-x: auto;
}

.cpg-tab {
    white-space: nowrap;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
}

.cpg-tab.active {
    background: #fff;
    color: #173b63;
}

/* PRODUCTS */
.products {
    padding: 70px 0;
}

.category-block {
    margin-bottom: 90px;
}

.category-block h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.category-desc {
    color: #666;
    margin-bottom: 40px;
}

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

.product-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.img-placeholder {
    height: 180px;
    background: #eaeef5;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* TRUST */
.trust {
    background: #ffffff;
    padding: 60px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    font-weight: 500;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #173b63, #0f2a44);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

/* CUSTOM SCROLLBAR – CATEGORY TABS */
.cpg-tabs {
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #6ea8ff transparent;
    /* Firefox */
}

/* Chrome, Edge, Safari */
.cpg-tabs::-webkit-scrollbar {
    height: 6px;
}

.cpg-tabs::-webkit-scrollbar-track {
    background: transparent;
}

.cpg-tabs::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6ea8ff, #9cc3ff);
    border-radius: 10px;
}

.cpg-tabs::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #9cc3ff, #c6ddff);
}


/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .category-block h2 {
        font-size: 26px;
    }
}

.comments-area,
.comment-respond {
    display: none !important;
}

/* product page */
.products-row-section {
    padding: 100px 0;
    background: #f8faf9;
}

.section-heading h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.section-heading p {
    color: #666;
    margin-bottom: 60px;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Image */
.product-img {
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* Content */
.product-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-body p {
    color: #555;
    flex-grow: 1;
    margin-bottom: 25px;
}

/* Button */
.product-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #111, #444);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.product-btn:hover {
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
}

/* Responsive */
@media (max-width: 992px) {
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-row {
        grid-template-columns: 1fr;
    }
}

.banner_box {
    display: none;
}