/* Container */
.pcp-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Layout */
.pcp-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Image */
.pcp-gallery img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Title */
.pcp-title {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Description */
.pcp-desc {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Specs Box */
.pcp-specs-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
}

/* Table */
.pcp-specs {
    width: 100%;
    border-collapse: collapse;
}

.pcp-specs td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.pcp-specs td:first-child {
    font-weight: 600;
    color: #333;
}

/* Buttons */
.pcp-actions {
    margin-top: 25px;
}

.pcp-btn {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.pcp-btn.primary {
    background: #000;
    color: #fff;
}

.pcp-btn.secondary {
    border: 1px solid #000;
    color: #000;
}

/* Hover */
.pcp-btn:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
    .pcp-product {
        grid-template-columns: 1fr;
    }
}

/* Banner */
.pcp-banner {
    text-align: center;
    padding: 80px 20px;
    background: #f5f5f5;
}

.pcp-banner h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.pcp-subtitle {
    color: #ffffff;
font-weight: 500;
    font-family: inherit;
    
}

/* Sections */
.pcp-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.pcp-section.reverse {
    flex-direction: row-reverse;
}

.pcp-text {
    flex: 1;
    font-family: 'Montserrat';
    font-size: 17px;
}

.pcp-text h2 {
    margin-bottom: 15px;
    font-family: 'Krona One';
    color: #000000
}

.pcp-image {
    flex: 1;
}

.pcp-image img {
    width: 100%;
    border-radius: 10px;
}

/* Specs */
.pcp-specs-section {
    padding: 60px 20px;
    background: #fafafa;
    text-align: center;
}

.pcp-specs-table {
    max-width: 800px;
    margin: 20px auto;
    width: 100%;
    border-collapse: collapse;
}

.pcp-specs-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .pcp-section {
        flex-direction: column;
    }
}

.pcp-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 150px 50px;
}

.pcp-banner-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 1;
}

/* dark overlay */
.pcp-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.pcp-banner-content {
    position: relative;
    z-index: 3;
    width: 40%;
}

.pcp-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.pcp-features {
    padding: 60px 20px;
    /*background: #fff;*/
    text-align: center;
    font-family: 'Montserrat';
}

.pcp-features h2 {
   font-size: 32px;
    margin-bottom: 30px;
    font-family: inherit;
    font-weight: 700;
   color: #000000;
    font-family: 'Krona One';
}

.pcp-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.pcp-feature-item {
    /*border: 1px solid #eee;*/
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    /*background: #fafafa;*/
}

.pcp-feature-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.pcp-feature-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.pcp-feature-title {
    font-weight: 500;
    font-size: 15px;
    color:#000;
}
.pcp-feature-title p{
    font-family: inherit;
    font-weight: 400;
}

section.pcp-specs-section h2{
        font-family: 'Krona One';
    color: #273a78;
    font-weight: 600;
    font-size: 27px;
    
}

/* responsive */
@media (max-width: 768px) {
    .pcp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pcp-banner-content{
            width: 100%;
    }
}
