:root {
    --theme-blue: #0691d5;
    --theme-dark: #0b1934;
    --theme-light: #f4f7f6;
    --text-muted: #5a6a85;
}

.product-hero {
    padding: 80px 0;
}

.product-hero h1 {
    font-size: 38px;
    line-height: 40px;
    font-weight: 700;
    color: #0b1934;
}

.product-code {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-desc {
    color: #555;
    margin-bottom: 20px;
}

/* BUTTONS */

.btn-theme {
    display: inline-flex;
    align-items: center;
    background: var(--theme-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(6, 145, 213, 0.3);
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background: var(--theme-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 25, 52, 0.2);
}

.btn-outline-theme {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--theme-blue);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--theme-blue);
    transition: all 0.3s ease;
}

.btn-outline-theme:hover {
    background: var(--theme-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(6, 145, 213, 0.2);
}

/* SECTION */

.section-title {
    margin-bottom: 30px;
    font-size: 26px;
    color: #0b1934;
}

/* FEATURES */
.feature-box {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box i {
    color: var(--accent);
    margin-right: 10px;
}

/* TAGS */
.tags span {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--theme-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.tags span:hover {
    border-color: #0691d5;
    color: #fff;
    background: #0691d5;
    transform: translateY(-2px);
}

/* APPLICATION */
.app-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.app-box i {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 10px;
}

/* CTA */
.product-cta {
    padding: 70px 0;
    background: #0b1934;
    color: #fff;
}

.product-cta h2 {
    margin-bottom: 20px;
}