.v-page-carports { background: #000; color: #fff; overflow-x: hidden; }
.v-container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

/* Hero */
.v-hero-small { height: 60vh; background-size: cover; background-position: center; display: flex; align-items: center; position: relative; }
.v-hero-content h1 { font-size: 3.5rem; color: #fff; margin: 10px 0; font-weight: 800; }
.v-eyebrow { color: #76bc21; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }

/* Intro Card */
.v-intro-simple { padding: 100px 0; }
.v-intro-card { background: #0a0a0a; padding: 50px; border-radius: 20px; border: 1px solid #1a1a1a; text-align: center; }
.v-lead { font-size: 1.4rem; color: #76bc21; margin-bottom: 20px; font-weight: 600; line-height: 1.4; }

/* Product Blocks */
.v-product-block { padding: 60px 0; }
.v-bg-alt { background: #050505; }
.v-product-grid { 
    display: flex; 
    gap: 60px; 
    align-items: center; 
    margin-bottom: 0; /* Removes excessive gap between stacked sections */
}
.v-reverse { flex-direction: row-reverse; }
.v-product-media { flex: 1; }
.v-product-media img { width: 100%; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.v-product-info { flex: 1; }

.v-tag { color: #76bc21; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.v-product-info h2 { font-size: 2.8rem; margin: 15px 0; color: #fff; }
.v-product-info p { line-height: 1.7; color: #aaa; margin-bottom: 20px; }

.v-feature-list { 
    margin: 25px 0; 
    padding: 25px; 
    background: #0a0a0a; /* Deepens the background to match the veranda layout */
    border-radius: 12px; 
    border-left: 3px solid #76bc21; /* Maintains your brand lime accent */
    text-align: left;
}
.v-feature-list h4 { margin-bottom: 15px; text-transform: uppercase; font-size: 0.75rem; color: #666; letter-spacing: 1px; }
.v-feature-list ul { list-style: none; padding: 0; }
.v-feature-list li { 
    margin-bottom: 12px; 
    color: #ddd; 
    font-size: 0.95rem; 
    padding-left: 20px; 
    position: relative; 
}
.v-feature-list li::before { 
    content: '•'; 
    position: absolute; 
    left: 0; 
    color: #76bc21; 
    font-weight: bold; 
}

.v-btn-tech { 
    background: #000 !important; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #fff; 
    padding: 14px 30px; 
    border-radius: 50px; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    min-width: 180px;
}

.v-btn-tech:hover { 
    background: #000 !important;
    border-color: #76bc21 !important; 
    color: #76bc21 !important; /* Rollover only changes text/border to green */
    transform: translateY(-2px);
}

/* Pergola Section */
.v-pergola-cta { padding: 80px 0; }
.v-cta-box { background: #0a0a0a; padding: 50px; border-radius: 20px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #1a1a1a; }
.v-cta-text h2 { margin-bottom: 10px; font-size: 2rem; }
.v-cta-text p { color: #888; max-width: 500px; }
.v-btn-lime { background: #76bc21; color: #000; padding: 16px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; }
.v-btn-lime:hover { background: #87d42a; transform: translateY(-2px); }

/* Slide-out Technical Panel */
.v-tech-panel { position: fixed; top: 0; right: -500px; width: 450px; height: 100%; background: #0a0a0a; z-index: 2000; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); padding: 40px; border-left: 1px solid #222; overflow-y: auto; }
.v-tech-panel.active { right: 0; }
.v-tech-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.v-tech-header button { background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; }
.v-tech-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.8); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1999; backdrop-filter: blur(5px); }
.v-tech-mask.active { opacity: 1; visibility: visible; }

.v-spec-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #1a1a1a; }
.v-spec-row span:first-child { color: #666; font-size: 0.7rem; text-transform: uppercase; font-weight: 700; }
.v-spec-row span:last-child { color: #fff; font-size: 0.85rem; text-align: right; max-width: 60%; }