.pup-slideshow-wrapper-bcf4e5a5 {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
    font-family: inherit;
}

.pup-slides-container-bcf4e5a5 {
    position: relative;
    width: 100%;
}

.pup-slide-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
}

.pup-slide-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.pup-slide-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
}

@media (min-width: 768px) {
    .pup-slide-grid-container {
        grid-template-columns: 380px 1fr;
    }
}

/* Left Column Styling */
.pup-left-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pup-slide-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
}

.pup-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pup-slide-button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.pup-slide-button:hover {
    background-color: #2563eb;
}

/* Right Column Styling */
.pup-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 10px;
}

.pup-status-badge {
    background-color: #4caf50;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.pup-slide-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

/* Specs Grid */
.pup-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin-top: 15px;
}

@media (min-width: 480px) {
    .pup-specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pup-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pup-spec-label {
    font-size: 0.75rem;
    font-weight: bold;
    color: #888888;
    letter-spacing: 0.5px;
}

.pup-spec-val {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
}

/* Footer Accent */
.pup-card-footer {
    border-top: 1px solid #f3f4f6;
    background-color: #f9fafb;
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Slide Controls */
.pup-slideshow-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 10;
}

.pup-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    pointer-events: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, color 0.2s;
    color: #4a5568;
}

.pup-nav-btn:hover {
    background-color: #f7fafc;
    color: #1a202c;
}
